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:
+
+
+
+ `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" |  |
+| 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" |  |
+
+> [!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

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.
+
+
+
## 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,
+ },
+ ]}>
+
- style?: StyleProp
+ style?: AnimatedStyle
}) {
const {t: l} = useLingui()
const t = useTheme()
diff --git a/src/components/dms/NewMessagesPill.tsx b/src/components/dms/NewMessagesPill.tsx
index fa9520286c..049dcac26a 100644
--- a/src/components/dms/NewMessagesPill.tsx
+++ b/src/components/dms/NewMessagesPill.tsx
@@ -1,12 +1,12 @@
import {useCallback} from 'react'
import {Pressable, View} from 'react-native'
import Animated, {
- runOnJS,
useAnimatedStyle,
useSharedValue,
withTiming,
} from 'react-native-reanimated'
import {useSafeAreaInsets} from 'react-native-safe-area-context'
+import {scheduleOnRN} from 'react-native-worklets'
import {
ScaleAndFadeIn,
@@ -41,7 +41,7 @@ export function NewMessagesPill({
}, [scale])
const onPress = useCallback(() => {
- runOnJS(playHaptic)()
+ scheduleOnRN(playHaptic)
onPressInner?.()
}, [onPressInner, playHaptic])
diff --git a/src/components/dms/SwipeToReply.tsx b/src/components/dms/SwipeToReply.tsx
index 3ae0347374..7cdd256aa9 100644
--- a/src/components/dms/SwipeToReply.tsx
+++ b/src/components/dms/SwipeToReply.tsx
@@ -4,13 +4,13 @@ import {Gesture, type GestureType} from 'react-native-gesture-handler'
import Animated, {
clamp,
interpolate,
- runOnJS,
useAnimatedStyle,
useReducedMotion,
useSharedValue,
withSequence,
withTiming,
} from 'react-native-reanimated'
+import {scheduleOnRN} from 'react-native-worklets'
import {useHaptics} from '#/lib/haptics'
import {atoms as a, tokens, useTheme} from '#/alf'
@@ -111,7 +111,7 @@ export function SwipeToReply({
if (pastThreshold && !hit.get()) {
hit.set(true)
runPop()
- runOnJS(playHaptic)('Medium')
+ scheduleOnRN(playHaptic, 'Medium')
} else if (!pastThreshold && hit.get()) {
hit.set(false)
}
@@ -120,7 +120,7 @@ export function SwipeToReply({
'worklet'
// Only a clean end (finger lifted past threshold) triggers the reply.
if (hit.get()) {
- runOnJS(onReply)()
+ scheduleOnRN(onReply)
}
})
.onFinalize(() => {
diff --git a/src/components/forms/TextField.tsx b/src/components/forms/TextField.tsx
index daa85c23ef..2512403ec3 100644
--- a/src/components/forms/TextField.tsx
+++ b/src/components/forms/TextField.tsx
@@ -12,7 +12,6 @@ import {
import {HITSLOP_20} from '#/lib/constants'
import {mergeRefs} from '#/lib/merge-refs'
import {
- android,
applyFonts,
atoms as a,
platform,
@@ -96,6 +95,8 @@ export function Root({children, isInvalid = false, style}: RootProps) {
a.relative,
a.w_full,
a.px_md,
+ // Contain the input's z-index so it cannot paint over nearby overlays.
+ {zIndex: 0},
style,
]}
{...web({
@@ -223,10 +224,6 @@ export function createInput(Component: typeof TextInput) {
paddingTop: 13,
paddingBottom: 13,
},
- android({
- paddingTop: 8,
- paddingBottom: 9,
- }),
/*
* Margins are needed here to avoid autofill background overlapping the
* top and bottom borders - esb
@@ -270,7 +267,16 @@ export function createInput(Component: typeof TextInput) {
ctx.onBlur()
onBlur?.(e)
}}
- placeholder={placeholder === null ? undefined : placeholder || label}
+ /*
+ * Android sizes an empty input from the font's bounding box instead
+ * of `lineHeight`, so a field with no placeholder shrinks on the
+ * first keystroke.
+ */
+ placeholder={
+ placeholder === null
+ ? platform({android: ' '})
+ : placeholder || label
+ }
placeholderTextColor={t.palette.contrast_500}
keyboardAppearance={t.name === 'light' ? 'light' : 'dark'}
style={flattened}
diff --git a/src/components/interstitials/FeedTrendingTopics.tsx b/src/components/interstitials/FeedTrendingTopics.tsx
index a9666a82be..4d45001f1c 100644
--- a/src/components/interstitials/FeedTrendingTopics.tsx
+++ b/src/components/interstitials/FeedTrendingTopics.tsx
@@ -1,12 +1,13 @@
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 {Plural, Trans, useLingui} from '@lingui/react/macro'
import {useModerationOpts} from '#/state/preferences/moderation-opts'
-import {useTrendingSettings} from '#/state/preferences/trending'
+import {
+ useTrendingSettings,
+ useTrendingSettingsApi,
+} from '#/state/preferences/trending'
import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery'
import {useTrendingConfig} from '#/state/service-config'
import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder'
@@ -18,29 +19,40 @@ import {
useTheme,
type ViewStyleProp,
} from '#/alf'
-import {alpha} from '#/alf/utils'
import {AvatarStack} from '#/components/AvatarStack'
+import {Button, ButtonIcon} from '#/components/Button'
+import {DotGrid3x1_Stroke2_Corner0_Rounded as EllipsisIcon} from '#/components/icons/DotGrid'
import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending'
import {Link} from '#/components/Link'
+import * as Prompt from '#/components/Prompt'
import {SubtleHover} from '#/components/SubtleHover'
+import {useTrendingTopicSeen} from '#/components/TrendingTopics'
import {Text} from '#/components/Typography'
import {useAnalytics} from '#/analytics'
const TOPIC_COUNT = 3
-export function FeedTrendingTopicsInterstitial() {
+export function FeedTrendingTopicsInterstitial({
+ feedSliceIndex,
+}: {
+ feedSliceIndex: number
+}) {
const {enabled} = useTrendingConfig()
const {trendingDisabled} = useTrendingSettings()
const {rightNavVisible} = useLayoutBreakpoints()
- return enabled && !trendingDisabled && !rightNavVisible ? : null
+ return enabled && !trendingDisabled && !rightNavVisible ? (
+
+ ) : null
}
-function Inner() {
+function Inner({feedSliceIndex}: {feedSliceIndex: number}) {
const t = useTheme()
const {t: l} = useLingui()
const gutters = useGutters([0, 'base'])
const ax = useAnalytics()
+ const trendingPrompt = Prompt.usePromptControl()
+ const {setTrendingDisabled} = useTrendingSettingsApi()
const {
data: trending,
error,
@@ -49,113 +61,131 @@ function Inner() {
} = 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
-
+
+
+
+
+ Trending
+
+
+
+
+ {({hovered, pressed}) => (
+
+ See more
+
+ )}
+
+ trendingPrompt.open()}
+ style={[a.bg_transparent]}>
+
+
+
-
-
+
- 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}
+
+
+
+ )
+ })}
diff --git a/src/components/interstitials/TrendingVideos.tsx b/src/components/interstitials/TrendingVideos.tsx
index 7f3a891436..d3047001a4 100644
--- a/src/components/interstitials/TrendingVideos.tsx
+++ b/src/components/interstitials/TrendingVideos.tsx
@@ -1,9 +1,7 @@
import {useCallback, useEffect, useMemo} from 'react'
import {ScrollView, View} from 'react-native'
import {AppBskyEmbedVideo, AtUri} from '@atproto/api'
-import {msg} from '@lingui/core/macro'
-import {useLingui} from '@lingui/react'
-import {Trans} from '@lingui/react/macro'
+import {Trans, useLingui} from '@lingui/react/macro'
import {useQueryClient} from '@tanstack/react-query'
import {VIDEO_FEED_URI} from '#/lib/constants'
@@ -14,7 +12,7 @@ import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture'
import {atoms as a, useGutters, useTheme} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron'
-import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times'
+import {DotGrid3x1_Stroke2_Corner0_Rounded as EllipsisIcon} from '#/components/icons/DotGrid'
import {Link} from '#/components/Link'
import * as Prompt from '#/components/Prompt'
import {Text} from '#/components/Typography'
@@ -35,7 +33,7 @@ const FEED_PARAMS: {
export function TrendingVideos() {
const t = useTheme()
- const {_} = useLingui()
+ const {t: l} = useLingui()
const ax = useAnalytics()
const gutters = useGutters([0, 'base'])
const {data, isLoading, error} = usePostFeedQuery(FEED_DESC, FEED_PARAMS)
@@ -48,7 +46,7 @@ export function TrendingVideos() {
.getQueryCache()
.find({queryKey: RQKEY(FEED_DESC, FEED_PARAMS)})
if (query && query.getObserversCount() <= 1) {
- query.fetch()
+ void query.fetch()
}
}
}, [queryClient])
@@ -83,20 +81,22 @@ export function TrendingVideos() {
a.align_center,
a.justify_between,
]}>
-
- Trending Videos
-
- trendingPrompt.open()}>
-
-
+
+
+ Trending videos
+
+ trendingPrompt.open()}>
+
+
+
-
-
@@ -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 ? (
-
-
-
+ <>
+
+
+
+
+ {
+ dispatch({type: 'clearOption'})
+ }}>
+
+
- {
- dispatch({type: 'clearOption'})
- }}>
-
-
-
+ {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}
+
+
+ onAnswer(true)}>
+
+ Yes
+
+
+
+
+ onAnswer(false)}>
+
+ No
+
+
+
+
+
+ )
+}
+
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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr "Per <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "En crear una cuenta, aceptas los <0>Termins de Servicio0> y la <1>Poli
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "En crear una cuenta, acceptas los <0>Termins de Servicio0>."
-#: 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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicaciรณn diz haber estau creada lo <0>{0}0>, pero la hemos vista en Bluesky lo <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Esta publicaciรณn diz haber estau creada lo <0>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr "Al crear una cuenta aceptes los <0>tรฉrminos del serviciu0> y la <1>po
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Al crear una cuenta aceptes los <0>tรฉrminos del serviciu0>."
-#: 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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Indicรณse qu'esta publicaciรณn se creรณ'l <0>{0}0> mas la primer vegada que se creรณ en Bluesky foi'l <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Indicรณse qu'esta publicaciรณn se creรณ'l <0>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {republicaciรณ} other {republicacions}}"
@@ -903,9 +856,9 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> t'ha afegit2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Inicia la sessiรณ0><1> o 1><2>crea un compte2><3> 3><4>per cercar notรญcies, esports, polรญtica, jocs de paraules i tot el que passa a Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Els comptes amb una marca de verificaciรณ blava<0><1/>0>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}0>"
msgstr "Per <0>{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 Service0>."
msgstr "Creant un compte indiques que estร s d'acord amb les <0>Condicions del servei0>."
-#: 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}0> 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 icon0> <1/>."
msgstr "Activa les notificacions per a un compte visitant el seu perfil i prement la <0>icona de la campana0> <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 more0>"
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รณ0>"
-#: 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รญ.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Hem encertat la teva ubicaciรณ? <0>Toca aquรญ per actualitzar la teva ubicaciรณ amb el GPS.0>"
-#: 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 Security0>."
msgstr "Si vols restringir qui pot rebre notificacions de l'activitat del teu compte, pots canviar-ho a <0>Configuraciรณ โ Privacitat i seguretat0>."
@@ -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 search0>."
msgstr "Mรฉs informaciรณ sobre <0>com utilitzar la cerca avanรงada0>."
@@ -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.0>"
msgstr "Mรฉs informaciรณ a la <0>configuraciรณ del compte.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 "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 up0>"
-msgstr ""
+msgstr "Ets nou a Bluesky? <0>Registra't0>"
#: 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}0>โ with advanced search filters applied."
msgstr "No s'ha trobat cap resultat per a ยซ<0>{query}0>ยป 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}0>โ."
msgstr "No s'han trobat resultats per a โ<0>{query}0>โ."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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, KWS1>, 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Aquesta publicaciรณ afirma haver estat creada el <0>{0}0>, perรฒ va ser vista per primera vegada per Bluesky el <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Aquesta publicaciรณ afirma haver estat creada el <0>{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}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}0>
msgstr "Aixรฒ eliminarร irreversiblement el teu compte de Bluesky <0>{currentHandle}0> i totes les dades associades. Tingues en compte que aixรฒ afectarร qualsevol altre servei del <1>protocol AT1> 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 verifiers0>: 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รงa0>: 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 manually0>."
-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 manualment0>."
#: 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 manually0>."
-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 manualment0>."
#: 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.0>"
msgstr "Estร s verificat. Perdrร s el teu estat de verificaciรณ si canvies el teu identificador. <0>Mรฉs informaciรณ.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 "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 Service0> for more information."
msgstr "Has de tenir com a mรญnim 13 anys per utilitzar Bluesky. Llegeix les nostres <0>Condicions del servei0> 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}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}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}0>. 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}0>. 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {repost} few {reposty} many {repostu} other {repostลฏ}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> vรกs pลidal2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Pลihlaste se0><1> nebo si 1><2>vytvoลte รบฤet2><3> 3><4>a vyhledรกvejte zprรกvy, sport, politiku a vลกe ostatnรญ, co se na Bluesky dฤje.4>"
@@ -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/>0> can verify others.
msgstr "รฤty s vroubkovanou modrou znaฤkou zaลกkrtnutรญ <0><1/>0> 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}0>"
msgstr "Od <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Vytvoลenรญm รบฤtu souhlasรญte s <0>Podmรญnkami sluลพby0> a <1>Zรกsad
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Vytvoลenรญm รบฤtu souhlasรญte s <0>Podmรญnkami sluลพby0>."
-#: 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}0> 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 icon0> <1/>."
msgstr "Povolte oznรกmenรญ pro รบฤet tak, ลพe navลกtรญvรญte jeho profil a stisknete <0>ikonu zvoneฤku0> <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 more0>"
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รญce0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Mรกme ลกpatnou polohu? <0>Klepnutรญm sem aktualizujte svou polohu pomocรญ GPS.0>"
-#: 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 Security0>."
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รญ0>."
@@ -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 search0>."
msgstr "Zjistฤte vรญce o tom, <0>jak pouลพรญvat pokroฤilรฉ vyhledรกvรกnรญ0>."
@@ -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.0>"
msgstr "Vรญce informacรญ najdete v <0>nastavenรญ รบฤtu.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 "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}0>โ with advanced search filters applied."
msgstr "Pro โ<0>{query}0>โ 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}0>โ."
msgstr "Pro โ<0>{query}0>โ 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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รญleny0> 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 KWS1> 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Tento pลรญspฤvek tvrdรญ, ลพe byl vytvoลen <0>{0}0>, ale Bluesky jej poprvรฉ zaznamenala <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Tento pลรญspฤvek tvrdรญ, ลพe byl vytvoลen <0>{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}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}0>
msgstr "Tรญmto nevratnฤ smaลพete svลฏj รบฤet Bluesky <0>{currentHandle}0> a vลกechna souvisejรญcรญ data. Vezmฤte na vฤdomรญ, ลพe to ovlivnรญ i dalลกรญ sluลพby <1>AT Protocol1>, 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 verifiers0>: 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ฤลovatele0>: 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.0>"
msgstr "Jste ovฤลeni. Pokud zmฤnรญte svoje uลพivatelskรฉ jmรฉno, ztratรญte status ovฤลenรญ. <0>Zjistit vรญce.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 "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 Service0> 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ลพby0>."
-#: 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "Mae <0>{displayName}0><1/><2> wedi'ch ychwanegu2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Mewngofnodwch0><1> neu 1><2>grรซwch cyfrif2><3> 3><4>i chwilio am newyddion, chwaraeon, gwleidyddiaeth, a phopeth arall sy'n digwydd ar Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Mae cyfrifon gyda marc siec glas cregynog <0><1/>0> 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}0>"
msgstr "Gan <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth0> a'r <1>P
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth0>."
-#: 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}0> 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 icon0> <1/>."
msgstr "Galluogwch hysbysiadau am gyfrif drwy fynd i'w proffil a phwyso'r <0>eicon cloch0> <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 more0>"
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 rhagor0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Ydy eich lleoliad yn anghywir gennym ni? <0>Tapiwch yma i ddiweddaru eich lleoliad gyda GPS.0>"
-#: 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 Ap0
#: src/ageAssurance/useVerificationFlow.ts:122
msgid "Hmm, it seems we weren't able to compute your level of access. Please try again."
-msgstr ""
+msgstr "Hmm, mae'n edrych fel nad oedd modd i ni ddeall eich lefel mynediad. Ceisiwch eto."
#: src/ageAssurance/useVerificationFlow.ts:141
msgid "Hmm, it seems your device was unable to share age information with us."
-msgstr ""
+msgstr "Hmm, mae'n edrych fel nad oedd modd i'ch dyfais rannu manylion oed gyda ni."
#: 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 "Hmmmm, dydyn ni ddim wedi gallu llwytho'r gwasanaeth cymedroli hwnnw."
msgid "Hold up! Weโre gradually giving access to video, and youโre still waiting in line. Check back soon!"
msgstr "Daliwch ati! Rydyn ni'n rhoi mynediad i fideo yn raddol, ac rydych chi'n dal i aros yn unol. Dewch nรดl cyn hir!"
-#: src/Navigation.tsx: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 "Darparwr gwesteio"
#. placeholder {0}: toNiceHostingUrl(state.pdsUrl)
#: src/screens/Login/LoginForm.tsx:655
msgid "Hosting provider: {0}"
-msgstr ""
+msgstr "Darparwr gwesteio: {0}"
#: src/screens/Login/LoginForm.tsx:657
msgid "Hosting provider: Bluesky"
-msgstr ""
-
-#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179
-msgid "Hot"
-msgstr "Difyr"
+msgstr "Darparwr gwesteio: Bluesky"
#: src/components/contacts/components/InviteInfo.tsx:54
msgid "How it works:"
@@ -6409,6 +6363,7 @@ msgstr "Os byddwch chi'n diweddaru eich cyfeiriad e-bost, bydd 2FA e-bost yn cae
msgid "If you want to change your password, we will send you a code to verify that this is your account."
msgstr "Os ydych am newid eich cyfrinair, byddwn yn anfon cod atoch i wirio mai hwn yw eich cyfrif."
+#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx: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 Security0>."
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 Diogelwch0>."
@@ -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 search0>."
-msgstr ""
+msgstr "Dysgu rhagor am <0>sut i ddefnyddio chwilio uwch0>."
#: 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.0>"
msgstr "Mae rhagor o wybodaeth yn eich <0>gosodiadau cyfrif0>"
#: 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 up0>"
-msgstr ""
+msgstr "Newydd i Bluesky? <0>Cofrestrwch0>"
#: 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}0>โ with advanced search filters applied."
-msgstr ""
+msgstr "Heb ganfod unrhyw ganlyniadau ar gyfer โ<0>{query}0>โ gyda'r hidlwyr chwilio uwch."
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "Dim canlyniadau i \"<0>{query}0>\"."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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, KWS1>, 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}0>, ond fe'i gwelwyd gyntaf gan Bluesky ar <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{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}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}0>
msgstr "Bydd hyn yn dileu eich cyfrif Bluesky <0>{currentHandle}0> ac unrhyw ddata cysylltiedig yn llwyr. Bydd hyn hefyd yn effeithio gwasanaethau <1> AT Protocol1> 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 verifiers0>: 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 dibynadwy0>: 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 manually0>."
-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 รข llaw0>."
#: 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 manually0>."
-msgstr ""
+msgstr "Doedd dim modd i ni ddilysu eich darparwr gwesteio. Gwiriwch eich cysylltiad rhyngrwyd, neu <0>gosodwch eich darparwr gwesteio รข llaw0>."
#: 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.0>"
msgstr "Rydych chi wedi'ch dilysu. Byddwch yn colli eich statws dilysu os byddwch yn newid eich handlen. <0>Dysgu ragor.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 "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 Service0> for more information."
msgstr "Rhaid eich bod yn o leiaf 13 oed i ddefnyddio Bluesky. Darllenwch ein <0>Amodau Gwasanaeth0> 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}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}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}0>. 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}0>. 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}}0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {deling} other {delinger}}"
@@ -903,9 +856,9 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> tilfรธjede dig2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Log ind0><1> eller 1><2>opret en konto2><3> 3><4>for at sรธge efter nyheder, sport, politik og alt andet, der sker pรฅ Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Konti med et amรธbeformet blรฅt flueben <0><1/>0> 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}0>"
msgstr "Af <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkรฅrene0> og <1>pr
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkรฅrene0>."
-#: 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 icon0> <1/>."
msgstr "Aktiver notifikationer for en konto ved at besรธge dens profil og trykke pรฅ <0>klokkeikonet0> <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 more0>"
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 mere0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Er din lokalitet forkert? <0>Tryk her for at opdatere din lokalitet med GPS.0>"
-#: 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 Security0>."
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 sikkerhed0>."
@@ -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 search0>."
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.0>"
msgstr "Lรฆs mere under <0>kontoindstillinger.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 "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 up0>"
-msgstr ""
+msgstr "Ny pรฅ Bluesky? <0>Opret konto0>"
#: 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}0>โ 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}0>โ."
msgstr "Ingen resultater fundet for โ<0>{query}0>โ."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dette opslag er dateret <0>{0}0>, men det blev fรธrst oprettet pรฅ Bluesky <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Dette opslag er dateret <0>{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}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}0>
msgstr "Dette vil uigenkaldeligt slette din Bluesky-konto <0>{currentHandle}0> og alle tilknyttede data. Bemรฆrk at dette ogsรฅ vil pรฅvirke alle andre <1>AT Protocol1>-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 verifiers0>: organizations that can directly issue verification."
msgstr "Tillid opstรฅr gennem forbindelser, fรฆllesskaber og delt indhold, sรฅ vi รฅbner nu for <0>autoriserede verifikatorer0>, 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.0>"
msgstr "Du er verificeret. Du vil miste din verifikation, hvis du รฆndrer dit handle. <0>Lรฆs mere.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 "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 Service0> for more information."
msgstr "Du skal vรฆre mindst 13 รฅr gammel for at bruge Bluesky. Lรฆs mere i vores <0>tjenestevilkรฅr0>."
-#: 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}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}0>. If you donโt recognize this provider, double-check your username."
-msgstr ""
+msgstr "Dit brugernavn og din adgangskode vil blive delt med <0>{host}0>. 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {Repost} other {Reposts}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, one {Gefรคllt mir} other {Gefรคllt mir}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> hat dich hinzugefรผgt2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Einloggen0><1> oder 1><2>einen Account erstellen2><3> 3><4>um nach Nachrichten, Sport, Politik und allem anderen zu suchen, was auf Bluesky passiert.4>"
@@ -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/>0> can verify others.
msgstr "Accounts mit einem gewellten blauen Hรคkchen <0><1/>0> 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}0>"
msgstr "Von <0>{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 Service0>."
msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen0> 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}0> 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 icon0> <1/>."
msgstr "Aktiviere Mitteilungen fรผr einen Account, indem du dessen Profil aufrufst und auf das <0>Glocken-Symbol0> <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 more0>"
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)0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Haben wir deinen Standort falsch erkannt? <0>Tippe hier, um deinen Standort mit GPS zu aktualisieren.0>"
-#: 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 Security0>."
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 Sicherheit0> รค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 search0>."
msgstr "Erfahre mehr darรผber, <0>wie du die erweiterte Suche verwendest0>."
@@ -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.0>"
msgstr "Mehr dazu in deinen <0>Account-Einstellungen0>"
#: 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.0>"
-msgstr "Es sieht so aus, als ob du einen Following-Feed vermisst. <0>Klicke hier, um einen hinzuzufรผgen.0>"
+msgstr "Es sieht so aus, als hรคttest du keinen โFolge ichโ-Feed. <0>Klicke hier, um einen hinzuzufรผgen.0>"
#. 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}0>โ with advanced search filters applied."
msgstr "Keine Ergebnisse fรผr โ<0>{query}0>โ 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}0>โ."
msgstr "Keine Ergebnisse fรผr โ<0>{query}0>โ 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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 weitergegeben0> 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 nutzen1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dieser Post soll am <0>{0}0> erstellt worden sein, wurde aber erstmals von Bluesky am <1>{1}1> gesehen."
@@ -12649,7 +12662,7 @@ msgstr "Dieser Post soll am <0>{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}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}0>
msgstr "Dadurch wird dein Bluesky-Account <0>{currentHandle}0> und alle damit verbundenen Daten unwiderruflich gelรถscht. Beachte, dass dies auch alle anderen <1>AT Protocol1>-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 verifiers0>: organizations that can directly issue verification."
msgstr "Vertrauen entsteht durch Beziehungen, Communitys und einem gemeinsamen Kontext. Deshalb ermรถglichen wir auch <0>vertrauenswรผrdige Verifizierer0>: 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.0>"
msgstr "Du bist verifiziert. Du verlierst deinen Verifizierungsstatus, wenn du deinen Handle รคnderst. <0>Mehr erfahren (auf Englisch).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 "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 Service0> for more information."
msgstr "Du musst mindestens 13 Jahre alt sein, um Bluesky nutzen zu kรถnnen. Lies unsere <0>Nutzungsbedingungen0>, 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {ฮฑฮฝฮฑฮดฮทฮผฮฟฯฮฏฮตฯ
ฯฮท} other {ฮฑฮฝฮฑฮดฮทฮผฮฟฯฮนฮตฯฯฮตฮนฯ}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>ฮฃฯ
ฮฝฮดฮตฮธฮตฮฏฯฮต0><1> ฮฎ 1><2>ฮดฮทฮผฮนฮฟฯ
ฯฮณฮฎฯฯฮต ฮญฮฝฮฑฮฝ ฮปฮฟฮณฮฑฯฮนฮฑฯฮผฯ2><3> 3><4>ฮณฮนฮฑ ฮฝฮฑ ฮฑฮฝฮฑฮถฮทฯฮฎฯฮตฯฮต ฮตฮนฮดฮฎฯฮตฮนฯ, ฮฑฮธฮปฮทฯฮนฮบฮฌ, ฯฮฟฮปฮนฯฮนฮบฮฌ ฮบฮฑฮน ฮฟฯฮนฮดฮฎฯฮฟฯฮต ฮฌฮปฮปฮฟ ฯฯ
ฮผฮฒฮฑฮฏฮฝฮตฮน ฯฯฮฟ Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "ฮฮฟฮณฮฑฯฮนฮฑฯฮผฮฟฮฏ ฮผฮต ฮญฮฝฮฑ ฮผฯฮปฮต ฮบฯ
ฮผฮฑฯฮฟฮตฮนฮดฮญฯ ฯฮนฮบ <0><1/>0> ฮผฯฮฟฯฮฟฯฮฝ ฮฝฮฑ ฮตฯฮฑฮปฮทฮธฮตฯฯฮฟฯ
ฮฝ ฮฌฮปฮปฮฟฯ
ฯ. ฮฯ
ฯฮฟฮฏ ฮฟฮน ฮฑฮพฮนฯฯฮนฯฯฮฟฮน ฮตฯฮฑฮปฮทฮธฮตฯ
ฯฮญฯ ฮตฯฮนฮปฮญฮณฮฟฮฝฯฮฑฮน ฮฑฯฯ ฯฮฟ 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}0>"
msgstr "ฮฯฯ <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "ฮฮทฮผฮนฮฟฯ
ฯฮณฯฮฝฯฮฑฯ ฮปฮฟฮณฮฑฯฮนฮฑฯฮผฯ ฯฯ
ฮผฯฯฮฝฮตฮฏฯฮต ฮผ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "ฮฮทฮผฮนฮฟฯ
ฯฮณฯฮฝฯฮฑฯ ฮปฮฟฮณฮฑฯฮนฮฑฯฮผฯ ฯฯ
ฮผฯฯฮฝฮตฮฏฯฮต ฮผฮต ฯฮฟฯ
ฯ <0>ฮฯฮฟฯ
ฯ ฮงฯฮฎฯฮทฯ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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#. placeholder {0}: word.value
+#: src/components/dialogs/MutedWords.tsx:484
+msgid "{0} <0>in <1>text & tags1>0>"
+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}}0> followed you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:395
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:304
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:500
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:473
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> 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}}0> reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:524
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:419
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> 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}}0> 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}, 0><1>{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}, 0><1>{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}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}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}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}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}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}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}0> and<1> 1><2>{1} 2>are included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: getName(items[0])
+#: src/screens/StarterPack/Wizard/index.tsx:550
+msgid "<0>{0}0> is included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: list.name
+#: src/components/WhoCanReply.tsx:353
+msgid "<0>{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}0><1/><2> added you2>"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:230
+#: src/screens/Search/SearchResults.tsx:412
+msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250
+msgid "<0>Tap here to update your location with GPS.0>"
+msgstr ""
+
+#. placeholder {0}: getName(items[1] /* [0] is self, skip it */)
+#: src/screens/StarterPack/Wizard/index.tsx:494
+msgid "<0>You0> and<1> 1><2>{0} 2>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/>0> 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.app0>."
+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}0>?"
+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}0>."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236
+msgid "Based on your device's location, we think you're in <0>{region}0>."
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:194
+msgid "Based on your network, we think you're in <0>{geolocationString}0>. 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}0>. 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}0>"
+msgstr ""
+
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:84
+msgid "By <0>{ownerDisplayName}0>"
+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 more0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:76
+msgid "By creating an account you agree to the <0>Privacy Policy0>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:43
+msgid "By creating an account you agree to the <0>Terms of Service0> and <1>Privacy Policy1>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:63
+msgid "By creating an account you agree to the <0>Terms of Service0>."
+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}0> 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 settings0>."
+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.0>"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:269
+msgid "Donโt see a code? <0>Click here to resend.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
+msgid "Don't see an email? <0>Click here to resend.0>"
+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.0>"
+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 icon0> <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 guide0> 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 more0>"
+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}0>"
+msgstr ""
+
+#. placeholder {0}: slice[0].profile.displayName
+#. placeholder {1}: serverCount - 1
+#: src/components/KnownFollowers.tsx:219
+msgid "Followed by <0>{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}0> and <1>{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}0>, <1>{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}0>."
+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.0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:323
+msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
+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 Password0>. 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.0>"
+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 here0>."
+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.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
+msgid "If you need to update your email, <0>click here0>."
+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 Security0>."
+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} 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 search0>."
+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.0>"
+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.0>"
+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.social0>"
+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.0>"
+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}}0> "
+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 up0>"
+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}0>โ with advanced search filters applied."
+msgstr ""
+
+#: src/screens/Search/SearchResults.tsx:245
+msgid "No results found for โ<0>{query}0>โ."
+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/>2>0>"
+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}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/>0>"
+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}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)}}0>"
+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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>"
+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}0>?"
+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}0>."
+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 blogpost0>."
+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>Discover0> 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}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}0>, but was first seen by Bluesky on <1>{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}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}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}0> and all associated data. Note that this will affect any other <1>AT Protocol1> 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}0>"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:315
+msgid "To log out, <0>click here0>. Or if youโd prefer, you can <1>delete your account1>."
+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 verifiers0>: 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}0>"
+msgstr ""
+
+#. placeholder {0}: post.author.handle
+#: src/components/WhoCanReply.tsx:324
+msgid "users following <0>@{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.0>"
+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 manually0>."
+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 manually0>."
+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>KWS0> 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}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}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}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 Guidelines0>, 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 support0> 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 Service0>, <1>Privacy Policy1>, and <2>Copyright Policy2>, 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 team0> 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.0>"
+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.0>"
+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 deactivate0> 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 settings0>."
+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 Service0> 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 Service0>. 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}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 settings0>."
+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}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}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}0>. 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {repost} other {reposts}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, one {like} other {likes}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> added you2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics and everything else happening on Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Accounts with a scalloped blue check mark <0><1/>0> 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}0>"
msgstr "By <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "By creating an account you agree to the <0>Terms of Service0> and <1>P
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "By creating an account you agree to the <0>Terms of Service0>."
-#: 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 icon0> <1/>."
msgstr "Enable notifications for an account by visiting their profile and pressing the <0>bell icon0> <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 more0>"
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 more0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
-#: 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 Security0>."
msgstr "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ Privacy and Security0>."
@@ -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 search0>."
msgstr "Learn more about <0>how to use advanced search0>."
@@ -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.0>"
msgstr "Learn more in your <0>account settings.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 "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}0>โ with advanced search filters applied."
msgstr "No results found for โ<0>{query}0>โ with advanced search filters applied."
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "No results found for โ<0>{query}0>โ."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner KWS1> 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "This post claims to have been created on <0>{0}0>, but was first seen by Bluesky on <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "This post claims to have been created on <0>{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}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}0>
msgstr "This will irreversibly delete your Bluesky account <0>{currentHandle}0> and all associated data. Note that this will affect any other <1>AT Protocol1> 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 verifiers0>: organizations that can directly issue verification."
msgstr "Trust emerges from relationships, communities and shared context, so weโre also enabling <0>trusted verifiers0>: 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.0>"
msgstr "You are verified. You will lose your verification status if you change your handle. <0>Learn more.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 "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 Service0> for more information."
msgstr "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service0> 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}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 ? ( ) : 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}}0> 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}}0> 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}}0> 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}}0> 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}}0> 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}}0> 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}}0> 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}}0> signed up with your starter pack"
msgstr ""
@@ -532,39 +519,39 @@ msgstr ""
msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> 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}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}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}0>?"
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.0>"
msgstr "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
-#: 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.social0>"
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}}0> "
msgstr "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> "
-#: 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/>2>0>"
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}0>?"
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}0>?"
@@ -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}0>. Restore the {defaultChannel} deployment to get back to a standard build."
+msgstr "This app is running a deployment of <0>{currentChannel}0>. 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}0>."
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}0>
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}1>"
+msgstr "via starter pack <0/><1>{starterPackName}1>"
+
#: 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}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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {reafiลo} other {reafiลoj}}"
@@ -903,9 +856,9 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> aligis vin2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Ensalutu0><1> aลญ 1><2>kreu konton2><3> 3><4>por serฤi pri novaฤตoj, sportoj, politiko kaj ฤio alia okazanta ฤe Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Kontoj kun gravurita blua kontrolmarko<0><1/>0>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}0>"
msgstr "De <0>{0}0>"
@@ -2504,17 +2468,17 @@ msgstr "Kreante konton vi konsentas pri la <0>Uzokondiฤoj0> kaj <1>Regularo p
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Kreante konton vi konsentas pri la <0>Uzokondiฤoj0>."
-#: 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 icon0> <1/>."
msgstr "Por ลalti sciigojn pri konto, vizitu ties profilon kaj premu la <0>sonorilan piktogramon0> <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 more0>"
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 pli0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "ฤu ni misdivenis vian lokon? <0>Tuลetu ฤi tie por aktualigi vian lokon per GPS.0>"
-#: 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 Security0>."
msgstr "Se vi volas limigi kiu povos ricevi sciigojn pri agado de via konto, vi povas ลanฤi tion en <0>Agordoj โ Privateco kaj sekureco0>."
@@ -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 search0>."
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.0>"
msgstr "Eksciu pli en viaj <0>kontaj agordoj0>."
#: 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}0>โ 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}0>โ."
msgstr "Neniu rezulto trovita por \"<0>{query}0>\"."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "ฤi tiu afiลo asertas, ke ฤi estis kreita je <0>{0}0>, sed ฤi estis unue vidita ฤe Bluesky je <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "ฤi tiu afiลo asertas, ke ฤi estis kreita je <0>{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}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}0>
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 verifiers0>: organizations that can directly issue verification."
msgstr "Fido aperas per interrilatoj, komunumoj kaj komunaj kuntekstoj, do ni ankaลญ estigis <0>fidataj konfirmantoj0>: 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.0>"
msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ลanฤos vian identigilon. <0>Eksciu pli.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 "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 Service0> for more information."
msgstr "Vi devas aฤi almenaลญ 13 jarojn por uzi Bluesky. Legu niajn <0>uzokondiฤojn0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {republicaciรณn} other {republicaciones}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> te aรฑadiรณ2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Inicia sesiรณn0><1> o 1><2>crea una cuenta2><3> 3><4>para acceder a noticias, deportes, debates polรญticos y todo lo que sucede en Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Las cuentas con una marca de verificaciรณn ondeada <0><1/>0> 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}0>"
msgstr "Por <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Al crear una cuenta, aceptas los <0>Tรฉrminos de servicio0> y la <1>Po
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Al crear una cuenta, aceptas los <0>Tรฉrminos de servicio0>."
-#: 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 icon0> <1/>."
msgstr "Activa las notificaciones de una cuenta visitando su perfil y pulsando el <0>icono de campana0> <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 more0>"
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รณn0>"
-#: 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รญ.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "ยฟTenemos mal tu ubicaciรณn? <0>Toca aquรญ para actualizar tu ubicaciรณn con GPS.0>"
-#: 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 Security0>."
msgstr "Si quieres restringir quiรฉn puede recibir notificaciones de la actividad de tu cuenta, puedes cambiarlo en <0>Configuraciรณn โ Privacidad y Seguridad0>."
@@ -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 search0>."
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.0>"
msgstr "Mรกs informaciรณn en tus <0>ajustes de cuenta.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 "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}0>โ 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}0>โ."
msgstr "No se encontraron resultados para \"<0>{query}0>\"."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicaciรณn declara haber sido creada en <0>{0}0>, pero fue vista por primera vez por Bluesky en <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Esta publicaciรณn declara haber sido creada en <0>{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}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}0>
msgstr "Esto eliminarรก de forma irreversible tu cuenta de Bluesky <0>{currentHandle}0> y todos los datos asociados. Ten en cuenta que esto afectarรก a cualquier otro servicio de <1>AT Protocol1> 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 verifiers0>: 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 confianza0>: 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.0>"
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).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 "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 Service0> for more information."
msgstr "Debes tener al menos 13 aรฑos para usar Bluesky. Lee nuestros <0>Tรฉrminos del servicio0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {berpost} other {berpost}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, one {gustoko} other {gustoko}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2>-k gehitu zaitu2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Hasi saioa0><1> edo 1><2>sortu kontu bat2><3> 3><4>Bluesky-n gertatzen den guztia, berriak, kirolak, politika eta abar bilatzeko.4>"
@@ -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/>0> can verify others.
msgstr "Egiaztapen-marka urdin ondulatua <0><1/>0> 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}0>"
msgstr "<0>{0}0>-gatik"
@@ -2504,11 +2468,11 @@ msgstr "Kontua sortzean <0>Zerbitzu Baldintzak0> eta <1>Pribatutasun Politika<
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Kontua sortzean <0>Zerbitzu Baldintzak0> 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}0> 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 icon0> <1/>."
msgstr "Kontu baten jakinarazpenak gaitzeko, bisitatu haren profila eta sakatu <0>kanpai ikonoa0> <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 more0>"
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 gehiago0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Zure kokapena gaizki ulertu al dugu? <0>Sakatu hemen zure kokapena GPSarekin eguneratzeko.0>"
-#: 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 Security0>."
msgstr "Zure kontuaren jardueraren jakinarazpenak nork jaso ditzakeen mugatu nahi baduzu, hau alda dezakezu <0>Ezarpenak โ Pribatutasuna eta Segurtasuna0> 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 search0>."
msgstr "Lortu informazio gehiago <0>bilaketa aurreratua nola erabili0> 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.0>"
msgstr "Informazio gehiago zure <0>kontuaren ezarpenetan.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 "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}0>โ with advanced search filters applied."
msgstr "Ez da emaitzarik aurkitu โ<0>{query}0>โ bilaketarako bilaketa-iragazki aurreratuak aplikatuta."
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "Ez da emaitzarik aurkitu โ<0>{query}0>โ-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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> eta datu hauek ez dute inoiz gailu hau uzten. Beraz, gailu honetan bakarrik ahalbidetzen du sarbidea. Bestela, <1>gure bazkide fidagarria, KWS, erabil dezakezu1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Post honek <0>{0}0>-n sortu dela dio, baina Bluesky-k <1>{1}1>-n ikusi zuen lehen aldiz."
@@ -12649,7 +12662,7 @@ msgstr "Post honek <0>{0}0>-n sortu dela dio, baina Bluesky-k <1>{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}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}0>
msgstr "Honek atzeraezin ezabatuko du zure Bluesky kontua <0>{currentHandle}0> eta lotutako datu guztiak. Kontuan izan honek kontu honekin erabiltzen dituzun beste <1>AT Protokolo1> 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 verifiers0>: organizations that can directly issue verification."
msgstr "Konfiantza harremanetatik, komunitateetatik eta partekatutako testuinguruetatik sortzen da, beraz, <0>egiaztatzaile fidagarriak0> 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.0>"
msgstr "Egiaztatuta zaude. Zure egiaztapen-egoera galduko duzu erabiltzaile izena aldatzen baduzu. <0>Ikasi gehiago.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 "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 Service0> for more information."
msgstr "Gutxienez 13 urte izan behar dituzu Bluesky erabiltzeko. Irakurri gure <0>Zerbitzu Baldintzak0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr "Kรคyttรคjรคltรค <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Luomalla tilin hyvรคksyt <0>kรคyttรถehdot0> ja <1>tietosuojakรคytรคnn
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Luomalla tilin hyvรคksyt <0>kรคyttรถehdot0>."
-#: 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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Tรคmรค julkaisu vรคittรครค olevansa luotu <0>{0}0>, mutta ensi kerran se on nรคhty Blueskyssa <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Tรคmรค julkaisu vรคittรครค olevansa luotu <0>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#. placeholder {0}: word.value
+#: src/components/dialogs/MutedWords.tsx:484
+msgid "{0} <0>in <1>text & tags1>0>"
+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}}0> followed you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:395
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:304
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:500
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:473
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> 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}}0> reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:524
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:419
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> 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}}0> 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}, 0><1>{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}, 0><1>{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}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}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}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}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}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}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}0> and<1> 1><2>{1} 2>are included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: getName(items[0])
+#: src/screens/StarterPack/Wizard/index.tsx:550
+msgid "<0>{0}0> is included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: list.name
+#: src/components/WhoCanReply.tsx:353
+msgid "<0>{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}0><1/><2> added you2>"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:230
+#: src/screens/Search/SearchResults.tsx:412
+msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250
+msgid "<0>Tap here to update your location with GPS.0>"
+msgstr ""
+
+#. placeholder {0}: getName(items[1] /* [0] is self, skip it */)
+#: src/screens/StarterPack/Wizard/index.tsx:494
+msgid "<0>You0> and<1> 1><2>{0} 2>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/>0> 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.app0>."
+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}0>?"
+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}0>."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236
+msgid "Based on your device's location, we think you're in <0>{region}0>."
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:194
+msgid "Based on your network, we think you're in <0>{geolocationString}0>. 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}0>. 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}0>"
+msgstr ""
+
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:84
+msgid "By <0>{ownerDisplayName}0>"
+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 more0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:76
+msgid "By creating an account you agree to the <0>Privacy Policy0>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:43
+msgid "By creating an account you agree to the <0>Terms of Service0> and <1>Privacy Policy1>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:63
+msgid "By creating an account you agree to the <0>Terms of Service0>."
+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}0> 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 settings0>."
+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.0>"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:269
+msgid "Donโt see a code? <0>Click here to resend.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
+msgid "Don't see an email? <0>Click here to resend.0>"
+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.0>"
+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 icon0> <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 guide0> 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 more0>"
+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}0>"
+msgstr ""
+
+#. placeholder {0}: slice[0].profile.displayName
+#. placeholder {1}: serverCount - 1
+#: src/components/KnownFollowers.tsx:219
+msgid "Followed by <0>{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}0> and <1>{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}0>, <1>{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}0>."
+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.0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:323
+msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
+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 Password0>. 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.0>"
+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 here0>."
+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.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
+msgid "If you need to update your email, <0>click here0>."
+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 Security0>."
+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} 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 search0>."
+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.0>"
+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.0>"
+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.social0>"
+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.0>"
+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}}0> "
+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 up0>"
+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}0>โ with advanced search filters applied."
+msgstr ""
+
+#: src/screens/Search/SearchResults.tsx:245
+msgid "No results found for โ<0>{query}0>โ."
+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/>2>0>"
+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}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/>0>"
+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}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)}}0>"
+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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>"
+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}0>?"
+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}0>."
+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 blogpost0>."
+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>Discover0> 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}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}0>, but was first seen by Bluesky on <1>{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}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}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}0> and all associated data. Note that this will affect any other <1>AT Protocol1> 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}0>"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:315
+msgid "To log out, <0>click here0>. Or if youโd prefer, you can <1>delete your account1>."
+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 verifiers0>: 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}0>"
+msgstr ""
+
+#. placeholder {0}: post.author.handle
+#: src/components/WhoCanReply.tsx:324
+msgid "users following <0>@{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.0>"
+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 manually0>."
+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 manually0>."
+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>KWS0> 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}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}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}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 Guidelines0>, 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 support0> 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 Service0>, <1>Privacy Policy1>, and <2>Copyright Policy2>, 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 team0> 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.0>"
+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.0>"
+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 deactivate0> 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 settings0>."
+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 Service0> 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 Service0>. 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}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 settings0>."
+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}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}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}0>. 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {repost} other {reposts}}"
@@ -903,9 +856,9 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr "<0>{0}0> {likeCount, plural, one {mention} other {mentions}} ยซย Jโaimeย ยป"
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> vous a ajoutรฉยทe2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Se connecter0><1> ou 1><2>crรฉer un compte2><3>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.4>"
@@ -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/>0> can verify others.
msgstr "Les comptes avec une coche bleue รฉmaillรฉeย <0><1/>0>ย 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}0>"
msgstr "Par <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "En crรฉant un compte, vous acceptez les <0>Conditions gรฉnรฉrales0> et
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "En crรฉant un compte, vous acceptez les <0>Conditions gรฉnรฉrales0>."
-#: 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 icon0> <1/>."
msgstr "Activez les notifications pour un compte en visitant leur profil puis en appuyant sur lโ<0>icรดne de cloche0> <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 more0>"
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)0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "On se trompe sur votre positionย ? <0>Tapez ici pour la mettre ร jour via GPS.0>"
-#: 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 Security0>."
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รฉ0>."
@@ -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 search0>."
msgstr "En savoir plus sur <0>comment utiliser la recherche avancรฉe (en anglais)0>."
@@ -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.0>"
msgstr "En savoir plus dans vos <0>paramรจtres de compte.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 "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}0>โ with advanced search filters applied."
msgstr "Aucun rรฉsultat trouvรฉ pour ยซย <0>{query}0>ย ยป 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}0>โ."
msgstr "Aucun rรฉsultat trouvรฉ pour ยซย <0>{query}0>ย ยป."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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 KWS1> 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Ce post dรฉclare avoir รฉtรฉ crรฉรฉ le <0>{0}0>, mais a รฉtรฉ vu pour la premiรจre fois par Bluesky le <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Ce post dรฉclare avoir รฉtรฉ crรฉรฉ le <0>{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}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}0>
msgstr "Cela supprimera dรฉfinitivement votre compte Bluesky <0>{currentHandle}0> et toutes les donnรฉes qui y sont associรฉes. Notez que cela affectera aussi tous les services <1>AT Protocol1> 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 verifiers0>: 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 confiance0>ย : 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.0>"
msgstr "Votre compte est vรฉrifiรฉ. Il perdra son statut de vรฉrification si vous changez votre pseudo. <0>En savoir plus (en anglais).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 "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 Service0> for more information."
msgstr "Vous devez avoir au moins 13 ans pour utiliser Bluesky. Lisez nos <0>Conditions gรฉnรฉrales0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Meld dy oan0><1>of 1><2>meitsje in account oan2><3>3><4>om te sykjen nei nijs, sport, polityk en al wat der op Bluesky bart.4>"
@@ -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/>0> can verify others.
msgstr "Accounts mei in skulpe blau finkje <0><1/>0> 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}0>"
msgstr "Troch <0>{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 Service0>."
msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbetingsten0>."
-#: 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 icon0> <1/>."
msgstr "Skeakelje meldingen yn foar in account troch harren profyl te besykjen en op it <0>belpiktogram0> <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 more0>"
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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
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 Security0>."
msgstr "Asto beheine wolst waโt meldingen foar de aktiviteit fan dyn account รปntfange kin, kinsto dit wizigje yn <0>Ynstellingen โ Privacy en Befeiliging0>."
@@ -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 search0>."
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.0>"
msgstr "Mear ynformaasje yn dyn <0>accountynstellingen.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 "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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dit berjocht beweart makke te wรชzen op <0>{0}0>, mar waard foar it earst sjoen troch Bluesky op <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Dit berjocht beweart makke te wรชzen op <0>{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}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}0>
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 verifiers0>: organizations that can directly issue verification."
msgstr "Fertrouwen รปntstiet รบt relaasjes, mienskippen en dielde kontekst, dus wy starte ek mei <0>fertroude ferifiearders0>: 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.0>"
msgstr "Do bist ferifiearre. Do silst dyn ferifikaasjestatus ferlieze asto dyn handle wizigest. <0>Mear ynfo.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 "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 Service0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr "Le <0>{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 Service0>."
msgstr "Mรก chruthaรญonn tรบ cuntas, glacann tรบ leis na <0>Tรฉarmaรญ Seirbhรญse0>."
-#: 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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Deir an phostรกil seo gur cruthaรญodh รญ ar <0>{0}0>, ach chonacthas รญ ar Bluesky den chรฉad uair ar <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Deir an phostรกil seo gur cruthaรญodh รญ ar <0>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Clร raich a-steach0><1> no 1><2>cruthaich cunntas2><3> 3><4>airson naidheachdan, spรฒrs, poileataigs is rud sam bith eile a tha aโ dol air Bluesky a lorg.4>"
@@ -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/>0> can verify others.
msgstr "โS urrainn do chunntasan aig a bheil cromag chrom-bhileach ghorm <0><1/>0> 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}0>"
msgstr "Le <0>{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 Service0>."
msgstr "Le bhith aโ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmichean na seirbheise0>."
-#: 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 icon0> <1/>."
msgstr "Cuir an comas brathan o chunntas le bhith aโ tadhal air aโ phrรฒifil is aโ brรนthadh <0>รฌomhaigheag aโ chluig0><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 more0>"
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 fiosrachaidh0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
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 Security0>."
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รจarainteachd0>."
@@ -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 search0>."
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.0>"
msgstr "Faigh barrachd fiosrachaidh ann an <0>roghainnean aโ chunntais0> 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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Tha am post seo aโ cumail a-mach gun deach a chruthachadh <0>{0}0> ach chunnacas e air Bluesky <1>{1}1> an toiseach."
@@ -12649,7 +12662,7 @@ msgstr "Tha am post seo aโ cumail a-mach gun deach a chruthachadh <0>{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}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}0>
msgstr "Ma nรฌ thu seo, thรจid an cunntas Bluesky <0>{currentHandle}0> 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 Protocol1> 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 verifiers0>: 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 earbsach0>: 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.0>"
msgstr "Chaidh do dhearbhadh. Caillidh tu dโ inbhe dearbhaidh ma dhโatharraicheas tu an lร mhrachan agad. <0>Barrachd fiosrachaidh.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 "โ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 Service0> 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 seirbheise0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr "Por <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo0> e a <1>Polรญtic
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo0>."
-#: 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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta publicaciรณn declara que foi feita en <0>{0}0>, pero foi vista por primeira vez por Bluesky en <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Esta publicaciรณn declara que foi feita en <0>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr "<0>{0}0> เคเฅ เคฆเฅเคตเคพเคฐ"
@@ -2504,11 +2468,11 @@ msgstr "เคเคพเคคเคพ เคฌเคจเคพเคจเฅ เคธเฅ เคเคช <0>เคธเฅเคตเคพ เคเฅ เคถเคฐ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "เคเคพเคคเคพ เคฌเคจเคพเคจเฅ เคธเฅ เคเคช <0>เคธเฅเคตเคพ เคเฅ เคถเคฐเฅเคคเฅเค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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "เคฏเคน เคชเฅเคธเฅเค <0>{0}0> เคเฅ เคฌเคจเคจเฅ เคเคพ เคฆเคพเคตเคพ เคเคฐเคคเคพ เคนเฅ, เคชเคฐ เคเคธเฅ Bluesky เคชเคฐ เคธเคฌเคธเฅ เคชเคนเคฒเฅ <1>{1}1> เคเฅ เคฆเฅเคเคพ เคเคฏเคพเฅค"
@@ -12649,7 +12662,7 @@ msgstr "เคฏเคน เคชเฅเคธเฅเค <0>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, other {megosztรกs}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> kedvelรฉs"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> vett fel Tรฉged2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Jelentkezz be0><1> vagy 1><2>regisztrรกlj2><3>, 3><4>ha szeretnรฉl a Blueskyon hรญreket, sport- รฉs politikai bejegyzรฉseket, vagy bรกrmi mรกst keresni!4>"
@@ -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/>0> can verify others.
msgstr "Mรกsokat hitelesรญteni csak a <0><1/>0> 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}0>"
msgstr "Szerzล: <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "A fiรณk lรฉtrehozรกsรกval elfogadod a <0>felhasznรกlรกsi feltรฉteleket
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "A fiรณk lรฉtrehozรกsรกval elfogadod a <0>felhasznรกlรกsi feltรฉteleket0>."
-#: 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 icon0> <1/>."
msgstr "Egy fiรณk รฉrtesรญtรฉseit a profiljรกn, a <0>harang ikonon0> <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 more0>"
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รณ0>"
-#: 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 ide0>."
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Tรฉvesen รกllapรญtottuk meg a tartรณzkodรกsi helyedet? <0>Koppints ide a GPS-es ellenลrzรฉshez.0>"
-#: 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 Security0>."
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รฉben0> 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 search0>."
-msgstr ""
+msgstr "<0>Tovรกbbi informรกciรณ a rรฉszletes keresลrลl.0>"
#: 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.0>"
msgstr "Tovรกbbi informรกciรณ a <0>fiรณkbeรกllรญtรกsokban0>."
#: 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}0>โ with advanced search filters applied."
-msgstr ""
+msgstr "A jelenlegi szลฑrลkkel nincsenek talรกlatok a(z) โ<0>{query}0>โ kifejezรฉsre."
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
-msgstr "A(z) โ<0>{query}0>โ kifejezรฉsre nincs talรกlat."
+msgstr "A(z) โ<0>{query}0>โ 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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 nem0>. 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 is1>."
-#: 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "A bejegyzรฉs adatai szerint az eredeti lรฉtrehozรกsi dรกtuma <0>{0}0> volt, de elลszรถr ekkor jelent meg a Blueskyon: <1>{1}1>"
@@ -12651,7 +12664,7 @@ msgstr "A bejegyzรฉs adatai szerint az eredeti lรฉtrehozรกsi dรกtuma <0>{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}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}0>
msgstr "Ez vรฉglegesen tรถrรถlni fogja a(z) <0>{currentHandle}0> Bluesky-fiรณkot รฉs minden hozzรก tartozรณ adatot. Ez a fiรณkot hasznรกlรณ tรถbbi <1>AT Protokoll1>-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 verifiers0>: 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ลk0> 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.0>"
msgstr "Jelenleg hitelesรญtve vagy. Ha megvรกltoztatod a felhasznรกlรณnevedet, azzal elveszik a hitelesรญtรฉsed. <0>Tovรกbbi informรกciรณ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 "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 Service0> 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รฉteleket0>."
-#: 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}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}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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> can verify others.
msgstr "Contos con un marca de verification blau festonate <0><1/>0> 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}0>"
msgstr "Per <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Creante un conto, tu accepta le <0>conditiones de servicio0> e le <1>p
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "In crear un conto, tu accepta le <0>conditiones de servicio0>."
-#: 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 icon0> <1/>."
msgstr "Activa le notificationes de un conto visitante su profilo e premente le <0>icone de campana0> <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 more0>"
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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
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 Security0>."
msgstr "Si tu vole restringer qui pote reciper notificationes del activitates de tu conto, tu pote cambiar lo in <0>Parametros โ Privatessa e securitate0>."
@@ -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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Iste publication affirma haber essite create in <0>{0}0>, mais illo ha essite vidite per Bluesky pro le prime vice in <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Iste publication affirma haber essite create in <0>{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}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}0>
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 verifiers0>: 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 confidentia0>: 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.0>"
msgstr "Tu conto es verificate. Tu perdera tu stato de verification si tu cambia tu pseundonymo. <0>Sape plus.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 "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 Service0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, other {posting ulang}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Masuk0><1> atau 1><2>buat akun2><3> 3><4>untuk mencari berita, olahraga, politik dan semuanya yang terjadi di Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Akun dengan tanda cek biru bergerigi <0><1/>0> 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}0>"
msgstr "Oleh <0>{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 Service0>."
msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan0>."
-#: 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 icon0> <1/>."
msgstr "Nyalakan notifikasi untuk akun dengan mengunjungi akun mereka dan menekan tombol ikon <0>lonceng0> <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 more0>"
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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
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 Security0>."
msgstr "Jika Anda ingin membatasi siapa saja yang dapat menerima notifikasi untuk aktivitas akun Anda, Anda dapat mengubahnya di <0>Pengaturan โ Privasi dan Keamanan0>."
@@ -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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Postingan ini mengklaim dibuat pada <0>{0}0>, tetapi baru terlihat di Bluesky pada <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Postingan ini mengklaim dibuat pada <0>{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}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}0>
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 verifiers0>: organizations that can directly issue verification."
msgstr "Percaya muncul dari hubungan, komunitas, dan konteks bersama, oleh karena itu kami juga aktifkan <0>verifikator terpecaya0>: 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.0>"
msgstr "Anda telah diverfikasi. Status verifikasi Anda akan hilang jika Anda mengganti nama panggilan Anda. <0>Pelajari selengkapnya.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 "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 Service0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {repost} other {repost}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, one {mi piace} other {mi piace}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> ti ha aggiunto2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Accedi0><1> o 1><2>crea un account2><3> 3><4>per cercare notizie, sport, politica e tutto quello che accade su Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Gli account con una spunta blu dentellata <0><1/>0> 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}0>"
msgstr "Di <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Iscrivendoti accetti i <0>Termini di servizio0> e l'<1>Informativa sul
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Iscrivendoti accetti i <0>Termini di servizio0>."
-#: 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}0>: 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 icon0> <1/>."
msgstr "Abilita le notifiche per un account visitandone il profilo e premendo l'<0>icona a forma di campanella0> <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 more0>"
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 informazioni0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Abbiamo sbagliato la tua posizione? <0>Tocca qui per aggiornare la tua posizione tramite GPS.0>"
-#: 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 Security0>."
msgstr "Per limitare chi puรฒ ricevere notifiche sull'attivitร del tuo account vai in <0>Impostazioni โ Privacy e sicurezza0>."
@@ -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 search0>."
msgstr "Maggiori informazioni su <0>come usare la ricerca avanzata0>."
@@ -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.0>"
msgstr "Maggiori informazioni nelle <0>impostazioni dell'account.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 "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}0>โ with advanced search filters applied."
msgstr "Nessun risultato trovato per โ<0>{query}0>โ 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}0>โ."
msgstr "Nessun risultato per โ<0>{query}0>โ."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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 condivise0> 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 KWS1>."
-#: 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Questo post dichiara di essere stato creato il <0>{0}0>, ma รจ stato visto per la prima volta da Bluesky il <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Questo post dichiara di essere stato creato il <0>{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}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}0>
msgstr "Il tuo account Bluesky <0>{currentHandle}0> e tutti i dati associati verranno eliminati irreversibilmente. Nota che questo influenzerร qualsiasi altro servizio che usa il <1>protocollo AT1> 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 verifiers0>: 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 attendibili0>: 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.0>"
msgstr "Sei verificato. Se cambi il tuo nome utente, perderai lo stato di verifica. <0>Maggiori informazioni.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 "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 Service0> for more information."
msgstr "Devi avere almeno 13 anni per usare Bluesky. Leggi i <0>Termini di Servizio0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, other {ใชใในใ}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, other {ใใใญ}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2>ใใใชใใ่ฟฝๅ ใใพใใ2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<4>ใใฅใผในใในใใผใใๆฟๆฒปใใปใใBlueskyไธใง่ตทใใฃใฆใใใใฎไปใในใฆใฎใใจใๆค็ดขใใใใใซใฏ4><0>ใตใคใณใคใณ0><1>ใใใ1><2>ใขใซใฆใณใใไฝๆ2><3>ใใฆใใ ใใใ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/>0> can verify others.
msgstr "ในใซใฉใใ็ถ๏ผๅธ็ซ่ฒใฎๅฝข็ถ๏ผใฎ้่ฒใฎใใงใใฏใใผใฏ <0><1/>0> ใฎใใใขใซใฆใณใใฏไปใฎใฆใผใถใ่ช่จผใงใใพใใใใใใฎไฟก้ ผใงใใ่ช่จผ่
ใฏ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}0>"
msgstr "ไฝๆ่
๏ผ<0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "ใขใซใฆใณใใไฝๆใใใใจใงใ<0>ๅฉ็จ่ฆ็ด0>ใจ<1>ใ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "ใขใซใฆใณใใไฝๆใใใใจใงใ<0>ๅฉ็จ่ฆ็ด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 icon0> <1/>."
msgstr "ใใญใใฃใผใซใซใขใฏใปในใใฆ<0>ใใซใฎใขใคใณใณ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 more0>"
msgstr "้ป่ฉฑ็ชๅทใ็
งๅใใ้ฃ็ตกๅ
ใจใใใใณใฐใใใใจใงใใชใใฎๅ้ใ่ฆใคใใพใใ็ง้ใฏใใชใใฎๆ
ๅ ฑใไฟ่ญทใใใใชใใฏๆฌกใซไฝใ่ตทใใใฎใใใณใณใใญใผใซใงใใพใใ<0>่ฉณ็ดฐใฏใใกใ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.0>"
msgstr "ไฝ็ฝฎๆ
ๅ ฑใ้้ใฃใฆใใพใใ๏ผ<0>ใใใใฟใใใใฆGPSใงไฝ็ฝฎๆ
ๅ ฑใๆดๆฐใใฆใใ ใใใ0>"
-#: 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 Security0>."
msgstr "ใใชใใฎใขใฏใใฃใใใฃใฎ้็ฅใๅไฟกใงใใใฆใผใถใผใๅถ้ใใใๅ ดๅใฏใ<0>่จญๅฎ โ ใใฉใคใใทใผใจใปใญใฅใชใใฃ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 search0>."
msgstr "<0>้ซๅบฆใชๆค็ดขใใฃใซใฟใฎไฝฟใๆน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.0>"
msgstr "<0>ใขใซใฆใณใ่จญๅฎใง่ฉณ็ดฐใ็ขบ่ชใใใ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}0>โ with advanced search filters applied."
msgstr "้ซๅบฆใชๆค็ดขใใฃใซใฟใผใ้ฉ็จใใใ<0>{query}0>ใใฎ็ตๆใฏ่ฆใคใใใพใใใงใใใ"
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "ใ<0>{query}0>ใใฎๆค็ดข็ตๆใฏใใใพใใใ"
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, to complete your verification and enable access on all platforms."
msgstr "ๅนด้ฝข็ฏๅฒใๅ
ฑๆใใใจใGoogleใขใซใฆใณใใซ้ข้ฃไปใใใใ็ฏๅฒใฎใฟใ้็คบใใใพใ๏ผไพ๏ผ18ๆญณไปฅไธใงใใใใจ๏ผใ<0>ๆญฃ็ขบใชๅนด้ฝขใ่ช็ๆฅใๅ
ฑๆใใใใใจใฏใชใใ0>ใใฎใใผใฟใใใฎใใใคในใใ้ไฟกใใใใใจใใใใพใใใใใฎใใใใใฎใใใคในใงใฎใฟใขใฏใปในใๆๅนใซใชใใพใใใพใใฏใ<1>ไฟก้ ผใงใใใใผใใใผใงใใ KWS ใๅฉ็จ1>ใใฆ่ช่จผใๅฎไบใใใในใฆใฎใใฉใใใใฉใผใ ใงใขใฏใปในใๆๅนใซใใใใจใใงใใพใใ"
-#: 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "<0>{0}0>ใซๆ็จฟใใใใจ่กจ็คบใใใฆใใพใใใBlueskyใซๅใใฆ็ปๅ ดใใใฎใฏ<1>{1}1>ใงใใ"
@@ -12649,7 +12662,7 @@ msgstr "<0>{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}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}0>
msgstr "ใใชใใฎBlueskyใขใซใฆใณใ <0>{currentHandle}0>ใจ้ข้ฃใใใในใฆใฎใใผใฟใฏๅ้คใใใๅ
ใซๆปใใพใใใ ใใฎใขใซใฆใณใใงไฝฟ็จใใไปใฎ<1>ATใใญใใณใซ1>ใตใผใในใซๅฝฑ้ฟใไธใใใใจใซๆณจๆใใฆใใ ใใใ"
#. 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 verifiers0>: organizations that can directly issue verification."
msgstr "ไฟก้ ผใฏไบบ้้ขไฟใใณใใฅใใใฃใๅ
ฑๆใใใฆใใๆ่ใใๅพใใใใใใ<0>ไฟก้ ผใงใใ่ช่จผ่
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.0>"
msgstr "ใใชใใฏ่ช่จผใใใฆใใพใใใใณใใซใๅคๆดใใใจใ่ช่จผในใใผใฟในใๅคฑใใใพใใ<0>่ฉณ็ดฐใฏใใกใใ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 Service0> for more information."
msgstr "Blueskyใไฝฟ็จใใใซใฏใ13ๆญณไปฅไธใงใใๅฟ
่ฆใใใใพใใ่ฉณ็ดฐใซใคใใฆใฏใ<0>ๅฉ็จ่ฆ็ด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}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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr "แแถแแแแแแถแแแแแแพแแแแแธแแฝแ แข
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "แแถแแแแแแถแแแแแแพแแแแแธแแฝแ แขแแแแแแแแแแแแนแ <0>แแแแแแแแแแแแพแแแแถแแ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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "แแแแแถแแแแแขแแขแถแแแถแแแแผแแแถแแแแแแพแแกแพแแแ
แแพ <0>{0}0> แแแปแแแแแแแแผแแแถแแแพแแแพแแแถแแพแแแแแผแแแแ Bluesky แแ
แแพ <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, other {์ฌ๊ฒ์}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, other {์ข์์}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> ๋์ด ๋๋ฅผ ์ถ๊ฐํจ2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>๋ก๊ทธ์ธ0><1>ํ๊ฑฐ๋ 1><2>๊ณ์ ์ ๋ง๋ค๊ณ 2><3> 3><4>๋ด์ค, ์คํฌ์ธ , ์ ์น ๋ฑ Bluesky์ ๋ค์ํ ์์์ ๊ฒ์ํ์ธ์.4>"
@@ -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/>0> can verify others.
msgstr "๋ฌผ๊ฒฐ ๋ชจ์์ ํ๋์ ์ฒดํฌ ํ์ <0><1/>0> ๊ฐ ์๋ ๊ณ์ ์ ๋ค๋ฅธ ๊ณ์ ์ ์ธ์ฆํ ์ ์์ต๋๋ค. ์ด๋ฌํ ์ ๋ขฐํ ์ ์๋ ์ธ์ฆ์๋ 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}0>"
msgstr "<0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "๊ณ์ ์ ๋ง๋ค๋ฉด <0>์๋น์ค ์ด์ฉ์ฝ๊ด0> ๋ฐ <1>๊ฐ์ธ์ ๋ณด
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "๊ณ์ ์ ๋ง๋ค๋ฉด <0>์๋น์ค ์ด์ฉ์ฝ๊ด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 icon0> <1/>."
msgstr "๊ณ์ ์ ํ๋กํ์ ๋ฐฉ๋ฌธํ์ฌ <0>์ข
๋ชจ์ ์์ด์ฝ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 more0>"
msgstr "Bluesky์์ ์ ํ๋ฒํธ๋ฅผ ์ธ์ฆํ๊ณ ์ฐ๋ฝ์ฒ๋ฅผ ๋งค์นญํ์ฌ ์น๊ตฌ๋ค์ ์ฐพ์๋ณด์ธ์. Bluesky๋ ์ฌ์ฉ์์ ์ ๋ณด๋ฅผ ์์ ํ๊ฒ ๋ณดํธํ๋ฉฐ, ์ดํ ๊ณผ์ ์ ์ฌ์ฉ์๊ฐ ์ง์ ์ ์ดํ ์ ์์ต๋๋ค. <0>์์ธํ ์์๋ณด๊ธฐ (์์ด)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}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,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>์ด๊ณณ์ ํด๋ฆญํ์ธ์.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "์์น ์ ๋ณด๊ฐ ์ฌ๋ฐ๋ฅด์ง ์๋์? <0>์ด๊ณณ์ ํญํ์ฌ GPS๋ก ์์น๋ฅผ ์
๋ฐ์ดํธํ์ธ์.0>"
-#: 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 Security0>."
msgstr "๋ด ๊ณ์ ์ ํ๋์ ๋ํ ์๋ฆผ์ ๋ฐ์ ์ ์๋ ์ฌ์ฉ์๋ฅผ ์ ํํ๋ ค๋ฉด <0>์ค์ โ ๊ฐ์ธ์ ๋ณด ๋ฐ ๋ณด์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 search0>."
msgstr "<0>๊ณ ๊ธ ๊ฒ์ ์ฌ์ฉ ๋ฐฉ๋ฒ (์์ด)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.0>"
msgstr "<0>๊ณ์ ์ค์ 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}0>โ with advanced search filters applied."
msgstr "๊ณ ๊ธ ๊ฒ์ ํํฐ๊ฐ ์ ์ฉ๋ ์ํ์์ โ<0>{query}0>โ์ ๋ํ ๊ฒ์ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์ ์ ์์ต๋๋ค."
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "โ<0>{query}0>โ์ ๋ํ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์ ์ ์์ต๋๋ค."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, to complete your verification and enable access on all platforms."
msgstr "์ฐ๋ น๋๋ฅผ ๊ณต์ ํ๋ฉด Google ๊ณ์ ๊ณผ ๊ด๋ จ๋ ๋ฒ์(์: ๋ง 18์ธ ์ด์)๋ง ๊ณต๊ฐํฉ๋๋ค. <0>์ ํํ ๋์ด์ ์๋
์์ผ์ ์ ๋ ๊ณต์ ๋์ง ์์ผ๋ฉฐ,0> ์ด ๋ฐ์ดํฐ๋ ์ด ๊ธฐ๊ธฐ๋ฅผ ๋ฒ์ด๋์ง ์์ต๋๋ค. ๋ฐ๋ผ์ ์ด ๊ธฐ๊ธฐ์์๋ง ์ ๊ทผํ ์ ์์ต๋๋ค. ๋๋ <1>์ ๋ขฐํ ์ ์๋ ํํธ๋์ธ KWS๋ฅผ ์ฌ์ฉ1>ํ์ฌ ์ธ์ฆ์ ์๋ฃํ๊ณ ๋ชจ๋ ํ๋ซํผ์์ ์ ๊ทผ์ ํ์ฑํํ ์ ์์ต๋๋ค."
-#: 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "์ด ๊ฒ์๋ฌผ์ <0>{0}0>์ ์์ฑ๋์๋ค๊ณ ์ฃผ์ฅํ์ง๋ง Bluesky์์๋ <1>{1}1>์ ์ฒ์ ํ์ธ๋์์ต๋๋ค."
@@ -12649,7 +12662,7 @@ msgstr "์ด ๊ฒ์๋ฌผ์ <0>{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}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}0>
msgstr "์ด ์์
์ Bluesky ๊ณ์ <0>{currentHandle}0> ๋ฐ ๊ด๋ จ๋ ๋ชจ๋ ๋ฐ์ดํฐ๋ฅผ ์๊ตฌ์ ์ผ๋ก ์ญ์ ํฉ๋๋ค. ์ด ๊ณ์ ์ผ๋ก ์ฌ์ฉํ๋ ๋ค๋ฅธ <1>AT ํ๋กํ ์ฝ1> ์๋น์ค์๋ ์ํฅ์ ๋ฏธ์น ์ ์๋ค๋ ์ ์ ์ ์ํด ์ฃผ์ธ์."
#. 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 verifiers0>: organizations that can directly issue verification."
msgstr "์ ๋ขฐ๋ ๊ด๊ณ, ์ปค๋ฎค๋ํฐ, ๊ณต์ ๋ ๋งฅ๋ฝ์์ ๋น๋กฏ๋๋ฏ๋ก ์ง์ ์ธ์ฆ์ ๋ฐํํ ์ ์๋ ์กฐ์ง์ธ <0>์ ๋ขฐํ ์ ์๋ ์ธ์ฆ์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.0>"
msgstr "ํ์ฌ ์ธ์ฆ๋ ์ํ์
๋๋ค. ํธ๋ค์ ๋ณ๊ฒฝํ๋ฉด ์ธ์ฆ์ด ํด์ ๋ ์ ์์ต๋๋ค. <0>์์ธํ ์์๋ณด๊ธฐ (์์ด)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 Service0> for more information."
msgstr "Bluesky๋ฅผ ์ด์ฉํ๋ ค๋ฉด ๋ง 13์ธ ์ด์์ด์ด์ผ ํฉ๋๋ค. ์์ธํ ๋ด์ฉ์ <0>์๋น์ค ์ด์ฉ์ฝ๊ด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}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>tags1>0>"
+msgstr ""
+
+#. Pattern: {wordValue} in text, tags
+#. placeholder {0}: word.value
+#: src/components/dialogs/MutedWords.tsx:484
+msgid "{0} <0>in <1>text & tags1>0>"
+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}}0> followed you"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:395
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your custom feed"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:304
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:500
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> liked your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:473
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> 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}}0> reposted your post"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:524
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> reposted your repost"
+msgstr ""
+
+#: src/view/com/notifications/NotificationFeedItem.tsx:419
+msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}0> 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}}0> 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}, 0><1>{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}, 0><1>{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}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}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}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}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}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}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}0> and<1> 1><2>{1} 2>are included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: getName(items[0])
+#: src/screens/StarterPack/Wizard/index.tsx:550
+msgid "<0>{0}0> is included in your starter pack"
+msgstr ""
+
+#. placeholder {0}: list.name
+#: src/components/WhoCanReply.tsx:353
+msgid "<0>{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}0><1/><2> added you2>"
+msgstr ""
+
+#: src/screens/Hashtag.tsx:230
+#: src/screens/Search/SearchResults.tsx:412
+msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250
+msgid "<0>Tap here to update your location with GPS.0>"
+msgstr ""
+
+#. placeholder {0}: getName(items[1] /* [0] is self, skip it */)
+#: src/screens/StarterPack/Wizard/index.tsx:494
+msgid "<0>You0> and<1> 1><2>{0} 2>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/>0> 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.app0>."
+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}0>?"
+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}0>."
+msgstr ""
+
+#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236
+msgid "Based on your device's location, we think you're in <0>{region}0>."
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:194
+msgid "Based on your network, we think you're in <0>{geolocationString}0>. 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}0>. 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}0>"
+msgstr ""
+
+#. The group chat creator, in the format 'By {displayName}'.
+#: src/components/dms/ChatInvite/Card.tsx:84
+msgid "By <0>{ownerDisplayName}0>"
+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 more0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:76
+msgid "By creating an account you agree to the <0>Privacy Policy0>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:43
+msgid "By creating an account you agree to the <0>Terms of Service0> and <1>Privacy Policy1>."
+msgstr ""
+
+#: src/screens/Signup/StepInfo/Policies.tsx:63
+msgid "By creating an account you agree to the <0>Terms of Service0>."
+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}0> 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 settings0>."
+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.0>"
+msgstr ""
+
+#: src/screens/Settings/components/DeleteAccountDialog.tsx:269
+msgid "Donโt see a code? <0>Click here to resend.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36
+msgid "Don't see an email? <0>Click here to resend.0>"
+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.0>"
+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 icon0> <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 guide0> 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 more0>"
+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}0>"
+msgstr ""
+
+#. placeholder {0}: slice[0].profile.displayName
+#. placeholder {1}: serverCount - 1
+#: src/components/KnownFollowers.tsx:219
+msgid "Followed by <0>{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}0> and <1>{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}0>, <1>{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}0>."
+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.0>"
+msgstr ""
+
+#: src/screens/Signup/StepInfo/index.tsx:323
+msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
+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 Password0>. 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.0>"
+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 here0>."
+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.0>"
+msgstr ""
+
+#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282
+msgid "If you need to update your email, <0>click here0>."
+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 Security0>."
+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} 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 search0>."
+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.0>"
+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.0>"
+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.social0>"
+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.0>"
+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}}0> "
+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 up0>"
+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}0>โ with advanced search filters applied."
+msgstr ""
+
+#: src/screens/Search/SearchResults.tsx:245
+msgid "No results found for โ<0>{query}0>โ."
+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/>2>0>"
+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}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/>0>"
+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}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)}}0>"
+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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>"
+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}0>?"
+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}0>."
+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 blogpost0>."
+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>Discover0> 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}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}0>, but was first seen by Bluesky on <1>{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}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}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}0> and all associated data. Note that this will affect any other <1>AT Protocol1> 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}0>"
+msgstr ""
+
+#: src/ageAssurance/components/NoAccessScreen.tsx:315
+msgid "To log out, <0>click here0>. Or if youโd prefer, you can <1>delete your account1>."
+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 verifiers0>: 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}0>"
+msgstr ""
+
+#. placeholder {0}: post.author.handle
+#: src/components/WhoCanReply.tsx:324
+msgid "users following <0>@{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.0>"
+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 manually0>."
+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 manually0>."
+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>KWS0> 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}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}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}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 Guidelines0>, 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 support0> 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 Service0>, <1>Privacy Policy1>, and <2>Copyright Policy2>, 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 team0> 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.0>"
+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.0>"
+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 deactivate0> 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 settings0>."
+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 Service0> 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 Service0>. 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}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 settings0>."
+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}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}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}0>. 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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr "เคเคพเคคเคพ เคธเคฟเคฐเฅเคเคจเคพ เคเคฐเฅเคฐ เคคเคชเคพเคเค <0>เคธ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "เคเคพเคคเคพ เคธเคฟเคฐเฅเคเคจเคพ เคเคฐเฅเคฐ เคคเคชเคพเคเค <0>เคธเฅเคตเคพ เคธเคฐเฅเคคเคนเคฐเฅ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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "เคฏเฅ เคชเฅเคธเฅเค <0>{0}0> เคฎเคพ เคธเคฟเคฐเฅเคเคจเคพ เคเคฐเคฟเคเคเฅ เคฆเคพเคตเฅ เคเคฐเฅเคฆเค, เคคเคฐ เคชเคนเคฟเคฒเฅ เคชเคเค Bluesky เคฆเฅเคตเคพเคฐเคพ <1>{1}1> เคฎเคพ เคฆเฅเคเคฟเคเคเฅ เคฅเคฟเคฏเฅเฅค"
@@ -12649,7 +12662,7 @@ msgstr "เคฏเฅ เคชเฅเคธเฅเค <0>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> can verify others.
msgstr "Accounts met een blauw vinkje <0><1/>0> 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}0>"
msgstr "Door <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Door een account aan te maken stem je in met de <0>Servicevoorwaarden0
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Door een account aan te maken ga je akkoord met de <0>Servicevoorwaarden0>."
-#: 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 icon0> <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 more0>"
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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Dit bericht beweert te zijn gemaakt op <0>{0}0>, maar werd voor het eerst gezien door Bluesky op <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Dit bericht beweert te zijn gemaakt op <0>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {repost} few {reposty} other {repostรณw}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr "Od <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Tworzฤ
c konto, akceptujesz <0>Regulamin0> i <1>Politykฤ prywatnoลci
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Tworzฤ
c konto, akceptujesz <0>Regulamin0>."
-#: 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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Ten wpis zostaล utworzony <0>{0}0>, ale po raz pierwszy pojawiล siฤ na Bluesky <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Ten wpis zostaล utworzony <0>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}, 0><1>{1}, 1>and {2, plural, one {# other} other {# others}} are included in your starter pack"
-msgstr "<0>{0}, 0><1>{1}, 1>e {2, plural, one {# outro} other {outros #}} estรฃo inclusos no seu pacote inicial"
+msgstr "<0>{0}, 0><1>{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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {repostagem} other {repostagens}}"
@@ -903,9 +856,9 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> adicionou vocรช2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Entre0><1> ou 1><2>crie uma conta2><3> 3><4>para procurar notรญcias, esportes, polรญtica e tudo o mais que acontece no Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Contas com um ponto de verificaรงรฃo azul ondulado <0><1/>0> 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}0>"
msgstr "Por <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Ao criar uma conta vocรช concorda com os <0>Termos de Serviรงo0> e a <
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Ao criar uma conta vocรช concorda com os <0>Termos de Serviรงo0>."
-#: 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}0> 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 icon0> <1/>."
msgstr "Ative as notificaรงรตes de uma conta ao visitar seu perfil e pressionar no <0>รญcone de sino0> <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 more0>"
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 mais0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Sua localizaรงรฃo estรก errada? <0>Toque aqui para atualizar sua localizaรงรฃo com GPS.0>"
-#: 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 Security0>."
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รงa0>."
@@ -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 search0>."
msgstr "Saiba mais sobre <0>como usar a busca avanรงada0>."
@@ -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.0>"
msgstr "Saiba mais nas suas <0>configuraรงรตes da conta.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 "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 up0>"
-msgstr ""
+msgstr "Chegando agora no Bluesky? <0>Cadastre-se0>"
#: 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}0>โ with advanced search filters applied."
-msgstr ""
+msgstr "Nenhum resultado encontrado para โ<0>{query}0>โ 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}0>โ."
msgstr "Nenhum resultado encontrado para \"<0>{query}0>โ."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> e estes dados nunca saem do dispositivo. Portanto, ele sรณ permite acesso a este dispositivo. Alternativamente <1>vocรช pode usar nosso parceiro confiรกvel, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Esta postagem alega ter sido criada em <0>{0}0>, mas ela apareceu no Bluesky em <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Esta postagem alega ter sido criada em <0>{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}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}0>
msgstr "Isso irรก excluir irreversivelmente sua conta Bluesky <0>{currentHandle}0> e todos os dados associados. Note que isto afetarรก qualquer outro serviรงo do <1>Protocolo AT1> 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 verifiers0>: 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รกveis0>: 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.0>"
msgstr "Vocรช foi verificado. Vocรช perderรก seu estado de verificaรงรฃo se mudar seu nome de usuรกrio. <0>Saiba mais.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 "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 Service0> for more information."
msgstr "Vocรช deve ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviรงo0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {republicaรงรฃo} other {republicaรงรตes}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, one {gosto} other {gostos}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> adicionou-te2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Inicie sessรฃo0><1> ou 1><2>crie uma conta2><3> 3><4>para procurar por notรญcias, desporto, polรญtica e tudo resto que acontece no Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Contas com um selo de verificaรงรฃo azul recortado <0><1/>0> 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}0>"
msgstr "Por <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicaรงรฃo0> e a <1>
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicaรงรฃo0>."
-#: 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}0> 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 icon0> <1/>."
msgstr "Ative as notificaรงรตes de uma conta visitando o perfil desta e pressionando o <0>รญcone de sino0> <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 more0>"
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 mais0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "A sua localizaรงรฃo estรก errada? <0>Toque aqui para atualizar a sua localizaรงรฃo com o GPS.0>"
-#: 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 Security0>."
msgstr "Se quer restringir quem pode receber notificaรงรตes da atividade da sua conta, pode alterar isso em <0>Definiรงรตes โ Privacidade e Seguranรงa0>."
@@ -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 search0>."
msgstr "Saiba mais sobre <0>como utilizar a pesquisa avanรงada0>."
@@ -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.0>"
msgstr "Saiba mais nas suas <0>definiรงรตes de conta.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 "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}0>โ with advanced search filters applied."
msgstr "Nenhum resultado encontrado para \"<0>{query}0>\" 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}0>โ."
msgstr "Nenhum resultado encontrado para โ<0>{query}0>โ."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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 KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Este post afirma ter sido criado em <0>{0}0>, mas foi primeiro visto por Bluesky em <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Este post afirma ter sido criado em <0>{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}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}0>
msgstr "Isto irรก eliminar de forma irreversรญvel a sua conta no Bluesky <0>{currentHandle}0> e todos os dados associados. Isto afetarรก qualquer outro serviรงo <1>AT Protocol1> 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 verifiers0>: 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รงa0>: 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.0>"
msgstr "A sua conta รฉ verificada. Perderรก a sua verificaรงรฃo se alterar o seu nome de utilizador. <0>Saiba mais.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 "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 Service0> for more information."
msgstr "Tem de ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviรงo0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {repostare} few {repostฤri} other {de repostฤri}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, one {apreciere} few {aprecieri} other {de aprecieri}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> v-a adฤugat2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Conectaศi-vฤ0><1> sau 1><2>creaศi un cont2><3> 3><4>pentru a cฤuta ศtiri, sport, politicฤ ศi tot ce se รฎntรขmplฤ pe Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Conturile cu bifa albastrฤ รฎn formฤ de feston <0><1/>0> 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}0>"
msgstr "de <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Prin crearea unui cont sunteศi de acord cu <0>Termenii de Serviciu0>
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Prin crearea unui cont sunteศi de acord cu <0>Termenii de Serviciu0>."
-#: 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 icon0> <1/>."
msgstr "Activaศi notificฤrile pentru un cont accesรขnd profilul acestuia ศi apฤsรขnd pe <0>pictograma clopoศel0> <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 more0>"
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 multe0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Am greศit locaศia dvs.? <0>Atingeศi aici pentru a vฤ actualiza locaศia cu GPS-ul.0>"
-#: 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 Security0>."
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 securitate0>."
@@ -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 search0>."
msgstr "Aflaศi mai multe despre <0>cum sฤ folosiศi cฤutarea avansatฤ0>."
@@ -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.0>"
msgstr "Aflaศi mai multe รฎn <0>setฤrile contului.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 "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}0>โ with advanced search filters applied."
msgstr "Nu s-au gฤsit rezultate pentru โ<0>{query}0>โ 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}0>โ."
msgstr "Niciun rezultat gฤsit pentru โ<0>{query}0>โ."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Aceastฤ postare pretinde cฤ a fost creatฤ pe <0>{0}0>, dar a fost vฤzutฤ prima datฤ de Bluesky pe <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Aceastฤ postare pretinde cฤ a fost creatฤ pe <0>{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}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}0>
msgstr "Aceastฤ acศiune va ศterge ireversibil contul dvs. Bluesky <0>{currentHandle}0> ศi toate datele asociate. Reศineศi cฤ acest lucru va afecta orice alte servicii pe <1>Protocolul AT1> 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 verifiers0>: 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 รฎncredere0>: 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.0>"
msgstr "Sunteศi verificat. Veศi pierde starea de verificare dacฤ vฤ schimbaศi identificatorul. <0>Aflaศi mai multe.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 "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 Service0> for more information."
msgstr "Trebuie sฤ aveศi cel puศin 13 ani pentru a utiliza Bluesky. Citiศi <0>Termenii de Serviciu0> 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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {ัะตะฟะพัั} few {ัะตะฟะพััะฐ} other {ัะตะฟะพััะพะฒ}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>ะะพะนะดะธัะต ะฒ ัะฒะพะน ะฐะบะบะฐัะฝั0><1> ะธะปะธ 1><2>ัะพะทะดะฐะนัะต ะฐะบะบะฐัะฝั2><3>, 3><4> ััะพะฑั ะธัะบะฐัั ะฝะพะฒะพััะธ, ัะฟะพัั, ะฟะพะปะธัะธะบั ะธ ะฒัั ะพััะฐะปัะฝะพะต, ััะพ ะฟัะพะธัั
ะพะดะธั ะฝะฐ Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "ะฃัััะฝัะต ะทะฐะฟะธัะธ ั ัะธะณััะฝะพะน ัะธะฝะตะน ะณะฐะปะพัะบะพะน <0><1/>0> ะผะพะณัั ะฒะตัะธัะธัะธัะพะฒะฐัั ะดััะณะธะต ััััะฝัะต ะทะฐะฟะธัะธ. ะญัะธ ะดะพะฒะตัะตะฝะฝัะต ะฒะตัะธัะธะบะฐัะพัั ะฒัะฑัะฐะฝั 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}0>"
msgstr "ะั <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "ะกะพะทะดะฐะฒะฐั ััััะฝัั ะทะฐะฟะธัั, ะฒั ัะพะณะปะฐัะฐะตัะต
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "ะกะพะทะดะฐะฒะฐั ััััะฝัั ะทะฐะฟะธัั, ะฒั ัะพะณะปะฐัะฐะตัะตัั ั <0>ะฃัะปะพะฒะธัะผะธ ะฟัะตะดะพััะฐะฒะปะตะฝะธั ััะปัะณ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 icon0> <1/>."
msgstr "ะะบะปััะธัะต ัะฒะตะดะพะผะปะตะฝะธั ะดะปั ััััะฝะพะน ะทะฐะฟะธัะธ, ะฟะพัะตัะธะฒ ะตั ะฟัะพัะธะปั ะธ ะฝะฐะถะฐะฒ <0>ะทะฝะฐัะพะบ ะบะพะปะพะบะพะปััะธะบะฐ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 more0>"
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>ะะฐะถะผะธัะต ะทะดะตัั.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "ะญัะพั ะฟะพัั ััะฒะตัะถะดะฐะตั, ััะพ ะฑัะป ัะพะทะดะฐะฝ <0>{0}0>, ะฝะพ ะฒะฟะตัะฒัะต ะฑัะป ะทะฐะผะตัะตะฝ Bluesky <1>{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}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}0>
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 verifiers0>: organizations that can directly issue verification."
msgstr "ะะพะฒะตัะธะต ัะพะถะดะฐะตััั ะฒ ะพัะฝะพัะตะฝะธัั
, ัะพะพะฑัะตััะฒะฐั
ะธ ะพะฑัะตะผ ะบะพะฝัะตะบััะต, ะฟะพััะพะผั ะผั ัะฐะบะถะต ะฒะฒะพะดะธะผ <0>ะดะพะฒะตัะตะฝะฝัั
ะฒะตัะธัะธะบะฐัะพัะพะฒ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.0>"
msgstr "ะั ะฒะตัะธัะธัะธัะพะฒะฐะฝั. ะั ะฟะพัะตััะตัะต ััะฐััั ะฒะตัะธัะธะบะฐัะธะธ, ะตัะปะธ ะธะทะผะตะฝะธัะต ะฒะฐั ะฟัะตะฒะดะพะฝะธะผ. <0>ะฃะทะฝะฐัั ะฑะพะปััะต.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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, one {รฅterpublicering} other {รฅterpubliceringar}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, one {gillamarkering} other {gillamarkeringar}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> lade till dig2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>Logga in0><1> eller 1><2>skapa ett konto2><3> 3><4>fรถr att sรถka efter nyheter, sport, politik och allt annat som hรคnder pรฅ Bluesky.4>"
@@ -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/>0> can verify others.
msgstr "Konton med en blรฅ, vรฅgkantad bockmarkering <0><1/>0> 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}0>"
msgstr "av <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "Genom att skapa ett konto godkรคnner du vรฅra <0>anvรคndarvillkor0> oc
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Genom att skapa ett konto godkรคnner du vรฅra <0>anvรคndarvillkor0>."
-#: 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 icon0> <1/>."
msgstr "Aktivera notiser fรถr ett konto genom att besรถka dess profil och trycka pรฅ <0>klockikonen0> <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 more0>"
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 mer0>"
-#: 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Har vi tagit fel pรฅ var du befinner dig? <0>Tryck hรคr fรถr att uppdatera din plats med GPS.0>"
-#: 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 Security0>."
-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รคkerhet0>."
+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รคkerhet0>."
#: 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 search0>."
msgstr "Lรคs mer om <0>hur du anvรคnder avancerade sรถkfilter0>."
@@ -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.0>"
msgstr "Lรคs mer i dina <0>kontoinstรคllningar0>."
#: 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}0>โ with advanced search filters applied."
msgstr "Inga resultat hittades fรถr โ<0>{query}0>โ 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}0>โ."
msgstr "Inga resultat hittades fรถr โ<0>{query}0>โ."
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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 KWS1>. 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Det hรคr inlรคgget har <0>{0}0> som angivet skapelsedatum, men registrerades pรฅ Bluesky fรถrst den <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Det hรคr inlรคgget har <0>{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}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}0>
msgstr "Detta kommer att permanent radera ditt Bluesky-konto <0>{currentHandle}0> och all tillhรถrande data. Observera att detta รคven pรฅverkar andra tjรคnster som anvรคnder <1>AT-protokollet1> 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 verifiers0>: 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 verifierare0> โ 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.0>"
msgstr "Du รคr verifierad. Din verifieringsstatus gรฅr fรถrlorad om du รคndrar ditt anvรคndarnamn. <0>Lรคs mer.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 "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 Service0> for more information."
msgstr "Du mรฅste vara minst 13 รฅr fรถr att anvรคnda Bluesky. Lรคs vรฅra <0>anvรคndarvillkor0> 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}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}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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr ""
msgid "By creating an account you agree to the <0>Terms of Service0>."
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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, other {yeniden gรถnderi}}"
@@ -903,7 +856,7 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr "<0>{0}0> {likeCount, plural, other {beฤeni}}"
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> sizi ekledi2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<4>Bluesky'da haber, spor, siyaset ve diฤer olan biteni aramak iรงin4><3> 3><0>giriล yapฤฑn0><1> veya 1><2>bir hesap oluลturun.2>"
@@ -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/>0> can verify others.
msgstr "รฤฑkฤฑntฤฑlฤฑ onay tikine sahip hesaplar <0><1/>0> 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}0>"
msgstr "<0>{0}0> tarafฤฑndan geliลtiriliyor"
@@ -2504,11 +2468,11 @@ msgstr "Bir hesap oluลturarak <0>Hizmet ลartlarฤฑ0>'nฤฑ ve <1>Gizlilik Polit
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "Bir hesap oluลturarak <0>Hizmet ลartlarฤฑ0>'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 icon0> <1/>."
msgstr "Bir hesabฤฑn bildirimlerini etkinleลtirmek iรงin profilini ziyaret edin ve <0>zil simgesine0> <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 more0>"
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 edinin0>"
-#: 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}0> 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.0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "Konumunuzu tutturamadฤฑk mฤฑ? <0>Konumunuzu GPS'le gรผncellemek iรงin buraya dokunun.0>"
-#: 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 Security0>."
msgstr "Hesabฤฑnฤฑzฤฑn etkinlik bildirimlerini kimlerin alabileceฤini sฤฑnฤฑrlamak istiyorsanฤฑz, bunu <0>Ayarlar โ Gizlilik ve Gรผvenlik0> 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 search0>."
msgstr "<0>Geliลmiล aramayฤฑ nasฤฑl kullanacaฤฤฑnฤฑz0> 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.0>"
msgstr "<0>Hesap ayarlarฤฑnฤฑzdan0> 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}0>โ with advanced search filters applied."
msgstr "Geliลmiล arama filtreleri uygulanmฤฑล olarak โ<0>{query}0>โ iรงin sonuรง bulunamadฤฑ."
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "\"<0>{query}0>\" 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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,0> 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 kullanabilirsiniz1>."
-#: 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Bu gรถnderi <0>{0}0> tarihinde oluลturulduฤunu beyan ediyor, ancak Bluesky'da ilk olarak <1>{1}1> tarihinde gรถrรผldรผ."
@@ -12649,7 +12662,7 @@ msgstr "Bu gรถnderi <0>{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}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}0>
msgstr "Bu, geri dรถnรผlemez ลekilde <0>{currentHandle}0> Bluesky hesabฤฑnฤฑzฤฑ ve onla iliลkilendirilen tรผm verileri silecektir. Bunun bu hesapla kullandฤฑฤฤฑnฤฑz diฤer <1>AT Protokolรผ1> 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 verifiers0>: 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ฤฑ0> 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.0>"
msgstr "Doฤrulanmฤฑลsฤฑnฤฑz. Kullanฤฑcฤฑ adฤฑnฤฑzฤฑ deฤiลtirirseniz doฤrulama durumunuzu kaybedeceksiniz.<0>Daha fazla bilgi edinin.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 "ฤฐ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 Service0> for more information."
msgstr "Bluesky'ฤฑ kullanmak iรงin en az 13 yaลฤฑnda olmanฤฑz gerekmektedir. Daha fazla ilgi iรงin <0>Hizmet ลartlarฤฑ0>'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}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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> 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}0>"
msgstr ""
@@ -2504,11 +2468,11 @@ msgstr "ะั ััะฒะพัะตะฝะฝัะผ ะพะฑะปัะบะพะฒะพะณะพ ะทะฐะฟะธัั ะฒะธ ะฟะพะณ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "ะั ััะฒะพัะตะฝะฝัะผ ะพะฑะปัะบะพะฒะพะณะพ ะทะฐะฟะธัั ะฒะธ ะฟะพะณะพะดะถัััะตัั ะท <0>ะฃะผะพะฒะฐะผะธ ะฝะฐะดะฐะฝะฝั ะฟะพัะปัะณ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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "ะะฐะทะฝะฐัะฐััััั, ัะพ ะฟะพัั ะฑัะปะพ ััะฒะพัะตะฝะพ โ <0>{0}0>, ะฐะปะต ะฒะฟะตััะต ัะตะน ะฟะพัั ะฑัะปะพ ะพะฟัะธะปัะดะฝะตะฝะพ ะฝะฐ Bluesky โ <1>{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}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}0>
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 verifiers0>: 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.0>"
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 Service0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
msgstr ""
@@ -931,7 +884,7 @@ msgid "<0>{displayName}0><1/><2> added you2>"
msgstr ""
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
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/>0> can verify others.
msgstr "Tร i khoแบฃn cรณ dแบฅu tรญch xanh hรฌnh viแปn rฤng cฦฐa <0><1/>0> 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}0>"
msgstr "Bแปi <0>{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 Service0>."
msgstr "Bแบฑng viแปc tแบกo tร i khoแบฃn, bแบกn ฤแปng รฝ vแปi <0>ฤiแปu khoแบฃn dแปch vแปฅ0>."
-#: 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 icon0> <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 more0>"
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.0>"
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 Security0>."
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 search0>."
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.0>"
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}0>โ 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}0>โ."
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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "Bร i ฤฤng nร y khai rแบฑng ฤรฃ ฤฦฐแปฃc tแบกo vร o <0>{0}0>, nhฦฐng lแบงn ฤแบงu tiรชn ฤฦฐแปฃc Bluesky nhรฌn thแบฅy vร o <1>{1}1>."
@@ -12649,7 +12662,7 @@ msgstr "Bร i ฤฤng nร y khai rแบฑng ฤรฃ ฤฦฐแปฃc tแบกo vร o <0>{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}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}0>
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 verifiers0>: 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แบญy0>: 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.0>"
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.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 "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 Service0> 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}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}}0> 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0>{1, plural,one {่ฝฌๅ}other {่ฝฌๅ}}"
@@ -903,9 +856,9 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2>ๆทปๅ ไบไฝ 2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>็ปๅฝ0><1>ๆ1><2>ๅๅปบ่ดฆๆท2><3>3><4>ๅณๅฏๅจ Bluesky ไธๆ็ดขๆฐ้ปใไฝ่ฒใๆฟๆฒป็ญๆญฃๅจๅ็็ๆฐ้ฒไบใ4>"
@@ -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/>0> can verify others.
msgstr "ๅธฆๆ่่ฒๆๅฝขๅค่ง่ฎค่ฏๅพฝ็ซ ็่ดฆๆท <0><1/>0> ๅฏไปฅไธบๅ
ถไป่ดฆๆทๆไบ่ฎค่ฏ๏ผ่ฟไบๅฏไฟก่ฎค่ฏไบบ็ฑ 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}0>."
-msgstr ""
+msgstr "ๆ นๆฎไฝ ่ฎพๅคๆไพ็ไฝ็ฝฎไฟกๆฏ๏ผๆไปฌ่ฎคไธบไฝ ไฝไบ<0>{geolocationString}0>ใ"
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236
msgid "Based on your device's location, we think you're in <0>{region}0>."
-msgstr ""
+msgstr "ๆ นๆฎไฝ ่ฎพๅคๆไพ็ไฝ็ฝฎไฟกๆฏ๏ผๆไปฌ่ฎคไธบไฝ ไฝไบ<0>{region}0>ใ"
#: src/ageAssurance/components/NoAccessScreen.tsx:194
msgid "Based on your network, we think you're in <0>{geolocationString}0>. This estimate may be inaccurate if you're using a VPN."
-msgstr ""
+msgstr "ๅบไบไฝ ็็ฝ็ปไฟกๆฏ๏ผๆไปฌ่ฎคไธบไฝ ไฝไบ <0>{geolocationString}0>ใๅฆๆไฝ ๆญฃๅจไฝฟ็จ VPN๏ผๆญคไผฐ็ฎ็ปๆๅฏ่ฝไธๅ็กฎใ"
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241
msgid "Based on your network, we think you're in <0>{region}0>. 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}0>"
msgstr "ๆฅ่ช <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "็ปง็ปญๅๅปบ่ดฆๆทๅณไปฃ่กจไฝ ๅๆๆไปฌ็<0>ๆๅกๆกๆฌพ0>ๅ<1>
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "็ปง็ปญๅๅปบ่ดฆๆทๅณไปฃ่กจไฝ ๅๆๆไปฌ็<0>ๆๅกๆกๆฌพ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}0> ็้ช
#: 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 icon0> <1/>."
msgstr "่ฝฌๅฐๅ
ถไธชไบบไธป้กต๏ผ็นๅป <0>ๆ้ๅพๆ 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 more0>"
msgstr "้่ฟ้ช่ฏไฝ ็็ต่ฏๅท็ ๅนถไธไฝ ็้่ฎฏๅฝๅน้
๏ผๅณๅฏๆพๅฐๆญฃๅจไฝฟ็จ Bluesky ็ๆๅใๆไปฌไธฅๆ ผไฟๆคไฝ ็ๆฐๆฎไฟกๆฏ๏ผไฝ ๅฏ้ๆถๆๆกๅ็ปญไปปไฝๆไฝใ<0>ไบ่งฃๆดๅค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>็นๅป่ฟ้ใ0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "ไฝ็ฝฎไฟกๆฏๅคๆญๆ่ฏฏ๏ผ<0>็นๅปๆญคๅคๆฅ้่ฟ GPS ๆดๆฐไฝ ๆๅจ็ไฝ็ฝฎใ0>"
-#: 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>ๅบ็จๅฏ็ 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 Security0>."
msgstr "ๅฆๆไฝ ๆณ้ๅถๅ
ถไปไบบๆฅๆถไฝ ่ดฆๆท็ๅจๆๆ้๏ผๅฏไปฅ่ฝฌๅฐ<0>่ฎพ็ฝฎ โ ้็งไธๅฎๅ
จ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 search0>."
-msgstr ""
+msgstr "่ฟไธๆญฅไบ่งฃ<0>ๅฆไฝไฝฟ็จ้ซ็บงๆ็ดข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.0>"
msgstr "ๅจไฝ ็<0>่ดฆๆท่ฎพ็ฝฎ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 up0>"
-msgstr ""
+msgstr "ๅๆฅไนๅฐ Bluesky๏ผ<0>ๆณจๅ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}0>โ with advanced search filters applied."
-msgstr ""
+msgstr "ๅบ็จ้ซ็บงๆ็ดข็ญ้ๅจๅ๏ผๆชๆพๅฐๅน้
โ<0>{query}0>โ็็ปๆใ"
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "ๆพไธๅฐ็ฌฆๅ โ<0>{query}0>โ ็็ปๆใ"
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, to complete your verification and enable access on all platforms."
-msgstr ""
+msgstr "ๅไบซๆจ็ๅนด้พ่ๅดๅชไผ้้ฒไฝ Apple ่ดฆๆทๅ
ณ่็ๅคง่ดไฟกๆฏโโไพๅฆ๏ผไฝ ๅทฒๅนดๆปก 18 ๅฒใ<0>ไฝ ็็กฎๅๅนด้พๅ็ๆฅไฟกๆฏๆฐธ่ฟไธไผ่ขซๅไบซ๏ผ0>ๅนด้พ่ๅดๆฐๆฎไนๆฐธ่ฟไธไผ็ฆปๅผๆญค่ฎพๅคใๅ ๆญค๏ผๅฎๅช่ฝๅจๆญค่ฎพๅคไธๅฏ็จ่ฎฟ้ฎๆ้ใๆ่
๏ผ<1>ไฝ ๅฏไปฅไฝฟ็จๆไปฌ็ๅฏไฟกๅไฝไผไผด KWS1>ๆฅๅฎๆ้ช่ฏ๏ผไป่ๅจๆๆๅนณๅฐไธๅฏ็จ่ฎฟ้ฎๆ้ใ"
#. 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, to complete your verification and enable access on all platforms."
-msgstr ""
+msgstr "ๅไบซๆจ็ๅนด้พ่ๅดๅชไผ้้ฒไฝ Google ่ดฆๆทๅ
ณ่็ๅคง่ดไฟกๆฏโโไพๅฆ๏ผไฝ ๅทฒๅนดๆปก 18 ๅฒใ<0>ไฝ ็็กฎๅๅนด้พๅ็ๆฅไฟกๆฏๆฐธ่ฟไธไผ่ขซๅไบซ๏ผ0>ๅนด้พ่ๅดๆฐๆฎไนๆฐธ่ฟไธไผ็ฆปๅผๆญค่ฎพๅคใๅ ๆญค๏ผๅฎๅช่ฝๅจๆญค่ฎพๅคไธๅฏ็จ่ฎฟ้ฎๆ้ใๆ่
๏ผ<1>ไฝ ๅฏไปฅไฝฟ็จๆไปฌ็ๅฏไฟกๅไฝไผไผด KWS1>ๆฅๅฎๆ้ช่ฏ๏ผไป่ๅจๆๆๅนณๅฐไธๅฏ็จ่ฎฟ้ฎๆ้ใ"
-#: 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "่ฟๅๅธๆๅฃฐ็งฐๅๅธไบ <0>{0}0>๏ผไฝ้ฆๆฌกๅบ็ฐๅจ Bluesky ็ๆถ้ดไธบ <1>{1}1>ใ"
@@ -12649,7 +12662,7 @@ msgstr "่ฟๅๅธๆๅฃฐ็งฐๅๅธไบ <0>{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}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}0>
msgstr "่ฟๅฐๆฐธไน
ๅ ้คไฝ ็ Bluesky ่ดฆๆท <0>{currentHandle}0> ๅๆๆๅ
ณ่ๆฐๆฎใ่ฏทๆณจๆ๏ผ่ฟไนไผๅฝฑๅๆญค่ดฆๆทไฝฟ็จๅ
ถไป <1>AT ๅ่ฎฎ1> ็ๆๅกใ"
#. 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 verifiers0>: organizations that can directly issue verification."
msgstr "ไฟกไปปๆบไบไบบ้
ๅ
ณ็ณปใ็คพ็พคๅๅ
ฑไบซ็ฏๅข๏ผๅ ๆญคๆไปฌไนๅผๅ
ฅไบ<0>ๅฏไฟก็่ฎค่ฏไบบ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 manually0>."
-msgstr ""
+msgstr "ๆไปฌๆ ๆณๆพๅฐ่ฏฅ็จๆทๅๆๅฏนๅบ็่ดฆๆทใ่ฏทๆฃๆฅๅฆ่พๅ
ฅๆญฃ็กฎ๏ผๆ<0>ๆๅจ่ฎพ็ฝฎๆจ็ๆ็ฎกๆๅกๆไพๅ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 manually0>."
-msgstr ""
+msgstr "ๆไปฌๆ ๆณ้ช่ฏไฝ ๆๅฑ็ๆ็ฎกๆๅกๆไพๅใ่ฏทๆฃๆฅไฝ ็็ฝ็ป่ฟๆฅ๏ผๆ<0>ๆๅจ่ฎพ็ฝฎๆ็ฎกๆๅกๆไพๅ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.0>"
msgstr "ไฝ ๅทฒ่ทๅพ่ฎค่ฏใไธๆฆไฝ ๆดๆน่ดฆๆทไปฃ็ ๏ผไฝ ๅฐไผๅคฑๅป่ฎค่ฏ็ถๆใ<0>ไบ่งฃ่ฏฆๆ
ใ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 Service0> for more information."
msgstr "ไฝ ๅฟ
้กปๅนดๆปก13ๅจๅฒๆ่ฝไฝฟ็จ Bluesky๏ผ้
่ฏปๆไปฌ็<0>ๆๅกๆกๆฌพ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}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}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}0>. If you donโt recognize this provider, double-check your username."
-msgstr ""
+msgstr "ไฝ ็็จๆทๅๅๅฏ็ ๅ
ฑไบซ็ป <0>{host}0> ใๅฆๆไฝ ไธ่ฎค่ฏๆญคๆ็ฎกๆๅกๆไพๅ๏ผ่ฏทไป็ปๆฃๆฅไฝ ็็จๆทๅๅกซๅๆฏๅฆๆญฃ็กฎใ"
#: 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, other {ๆฌก่ฝ็ผ}}"
@@ -903,9 +856,9 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> ๅทฒๅฐไฝ ๅ ๅ
ฅ2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>็ปๅ
ฅ0><1>ๆ1><2>ๅปบ็ซๅธณ่2><3>3><4>ๅฐฑๅฏไปฅๆตๅฐๆฐ่ใ้ซ่ฒใๆฟๆฒป๏ผๅๅ Bluesky ไธ้ขๅ
ๅคงๅฐไบใ4>"
@@ -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/>0> can verify others.
msgstr "ๅธถๆๅ้ฝ่่ฒๅ่ๅพฝ็ซ ๅ
ๅธณ่<0><1/>0>ๅฏไปฅๆๆฌ้ฉ่ญๅ
ถไปๅธณ่ใๅขๅฒๅไฟกไปปๅ
้ฉ่ญ่
ไฟ็ฑ 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}0>."
-msgstr ""
+msgstr "ๆ นๆไฝ ่ฃ็ฝฎๅ
ไฝ็ฝฎ๏ผๆๅไผฐไฝ ่บซ่ <0>{geolocationString}0>ใ"
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236
msgid "Based on your device's location, we think you're in <0>{region}0>."
-msgstr ""
+msgstr "ๆ นๆไฝ ่ฃ็ฝฎๅ
ไฝ็ฝฎ๏ผๆๅไผฐไฝ ่บซ่ <0>{region}0>ใ"
#: src/ageAssurance/components/NoAccessScreen.tsx:194
msgid "Based on your network, we think you're in <0>{geolocationString}0>. This estimate may be inaccurate if you're using a VPN."
-msgstr ""
+msgstr "ๆ นๆไฝ ๅ
็ถฒ็ตก๏ผๆๅไผฐไฝ ่บซ่ <0>{geolocationString}0>ใ่ฅ็ถไฝ ็จ็ท VPN ๅ
่ฉฑ๏ผๅฏ่ฝๆไผฐ้ฏใ"
#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241
msgid "Based on your network, we think you're in <0>{region}0>. 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}0>"
msgstr "ๅ่ช <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "ๅปบ็ซๅธณ่ๅณไฟ่กจ็คบไฝ ๅๆ<0>ๆๅๆขๆฌพ0>ๅ<1>็ง้ฑๆฟ็ญ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "ๅปบ็ซๅธณ่ๅณไฟ่กจ็คบไฝ ๅๆ<0>ๆๅๆขๆฌพ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}0> ๅ
้ฉ่ญ็ขผ๏ผ"
#: 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 icon0> <1/>."
msgstr "ๅปๅฐๆญคๅธณ่ๅ
ๅไบบๆชๆก๏ผๆณ<0>้ไปๅๆจ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 more0>"
msgstr "้้้ฉ่ญไฝ ๅ
้ป่ฉฑ่็ขผๅ
ผๅน้
่ฏ็ตกไบบ๏ผๅณๅฏๅฐๆพไฝ Bluesky ไธๅ
ๆๅใๆๅไฟ่ญทไฝ ๅ
่ณๆ๏ผๅพ็บๆไฝไฝ ่ฉฑไบใ<0>ๆณ็ฅๅคๅฒ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>ๆณๅขๅบฆใ0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "ไฟๅชๆช้ฏๅไฝ ๅ
ไฝ็ฝฎ๏ผ<0>ๆณๅขๅบฆ็จ GPS ๆดๆฐไฝ ๅ
ไฝ็ฝฎใ0>"
-#: 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>ๆ็จ็จๅผๅฐ็จๅฏ็ขผ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 Security0>."
msgstr "่ฅ็ถไฝ ๆณ้ๅถ้ๅๅฏไปฅๆถๅฐไฝ ๅธณ่ๅ
ๅๆ
้็ฅ๏ผๅฏๅปๅฐ<0>่จญๅฎ โ ็ง้ฑๅไฟๅฎ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 search0>."
msgstr "ๆณ็ฅๅคๅฒ<0>้ป็จ้ฒ้ๆตๅข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.0>"
msgstr "ๆณ็ฅๅคๅฒๅปไฝ ๅ
<0>ๅธณ่่จญๅฎใ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 up0>"
-msgstr ""
+msgstr "็ฌฌไธๆฌก็จ Bluesky๏ผ<0>่จปๅ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}0>โ with advanced search filters applied."
msgstr "็จๅ้ฒ้ๆตๅข็ฏฉ้ธๅจๅพ๏ผๆตๅๅฐ็ฌฆๅใ<0>{query}0>ใๅ
็ตๆใ"
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "ๆตๅๅฐ็ฌฆๅใ<0>{query}0>ใๅ
็ตๆใ"
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, to complete your verification and enable access on all platforms."
-msgstr ""
+msgstr "ๅไบซไฝ ๅ
ๅนด้ฝก็ฏๅๅชๆๆญ้ฒๅไฝ Apple ๅธณ่้่ฏๅ
่ณ่จ๏ผไพๅฆ๏ผไฝ ๅนดๆปฟ 18 ๆญฒ๏ผใ<0>ไฝ ๅ
็ขบๅๅนด้ฝกๅ็ๆฅ็ตๅฐๅๆ่ขซๅไบซ๏ผ0>่ๅขๅฒ่ณๆไบฆ็ตๅฐๅๆ้ข้ๅข้จ่ฃ็ฝฎใๅ ๆญค๏ผๅขๅๅ่ฝๅไฟๅนซๆญค่ฃ็ฝฎ่งฃ้ค้ๅถใๆๆ๏ผ<1>ไฝ ๅฏไปฅ็จๆๅไฟกไปปๅ
ๅไฝๅคฅไผด KWS1>ๅปๅฎๆ้ฉ่ญ๏ผๆนไพฟๅบๆๆๅนณๅฐไธๅ็จๅ็จๆฌ้ใ"
#. 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, to complete your verification and enable access on all platforms."
-msgstr ""
+msgstr "ๅไบซไฝ ๅ
ๅนด้ฝก็ฏๅๅชๆๆญ้ฒๅไฝ Google ๅธณ่้่ฏๅ
่ณ่จ๏ผไพๅฆ๏ผไฝ ๅนดๆปฟ 18 ๆญฒ๏ผใ<0>ไฝ ๅ
็ขบๅๅนด้ฝกๅ็ๆฅ็ตๅฐๅๆ่ขซๅไบซ๏ผ0>่ๅขๅฒ่ณๆไบฆ็ตๅฐๅๆ้ข้ๅข้จ่ฃ็ฝฎใๅ ๆญค๏ผๅขๅๅ่ฝๅไฟๅนซๆญค่ฃ็ฝฎ่งฃ้ค้ๅถใๆๆ๏ผ<1>ไฝ ๅฏไปฅ็จๆๅไฟกไปปๅ
ๅไฝๅคฅไผด KWS1>ๅปๅฎๆ้ฉ่ญ๏ผๆนไพฟๅบๆๆๅนณๅฐไธๅ็จๅ็จๆฌ้ใ"
-#: 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "ๅขๆขๅธๆ่ฉฑไฟ่ฉฑๅบ <0>{0}0> ็ผๅธๅ
๏ผไฝไฟๆๅ
ๅบ็พๅบ Bluesky ๅ
ๆ้ไฟๅบ <1>{1}1>ใ"
@@ -12649,7 +12662,7 @@ msgstr "ๅขๆขๅธๆ่ฉฑไฟ่ฉฑๅบ <0>{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}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}0>
msgstr "ๅๅๆๆฐธไน
ๅช้คไฝ ๅ
Bluesky ๅธณ่ <0>{currentHandle}0> ๅๆๆ็ธ้่ณๆใ็ๆ่ฟ๏ผๅๆจฃไบฆๆๅฝฑ้ฟๅฐไฝ ็จๅขๅๅธณ่ไฝฟ็จๅ
ถไป <1>AT Protocol1> ๅ
ๆๅใ"
#. 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 verifiers0>: organizations that can directly issue verification."
msgstr "ไฟกไปปๆบๆผไบบ้้ไฟใ็คพ็พฃๅๅ
ฑไบซๅ
่ๆฏ๏ผๆไปฅๆๅไบฆ้ฝๅผๅ
ฅๅ<0>ๅไฟกไปปๅ
้ฉ่ญ่
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 manually0>."
-msgstr ""
+msgstr "ๆๅๆตๅๅฐ็จๆญค็จๆถๅ็จฑๅ
ๅธณ่ใ่ซๆชขๆฅๆๅๆ้ฏ๏ผๆๆ<0>ๆๅ่จญๅฎไฝ ๅ
่จ็ฎกๆๅๆไพ่
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 manually0>."
-msgstr ""
+msgstr "ๆๅ็กๆณ้ฉ่ญไฝ ๅ
่จ็ฎกๆๅๆไพ่
ใ่ซๆชขๆฅไฝ ๅ
็ถฒ็ตก้ฃ็ท๏ผๆๆ<0>ๆๅ่จญๅฎไฝ ๅ
่จ็ฎกๆๅๆไพ่
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.0>"
msgstr "ไฝ ็ถๅทฒ้ฉ่ญใ่ฅ็ถไฝ ่ฎๆดๅธณ่ไปฃ็ขผ๏ผๅฐๆๅคฑๅป้ฉ่ญ็ๆ
ใ<0>ๆณ็ฅๅคๅฒใ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 Service0> for more information."
msgstr "ๆจๅฟ
้ ๅนดๆปฟ 13 ๆญฒๅ
ๅฏไปฅไฝฟ็จ Blueskyใ้ฑ่ฎๆๅๅ
<0>ๆๅๆขๆฌพ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}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}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}0>. If you donโt recognize this provider, double-check your username."
-msgstr ""
+msgstr "ไฝ ๅ
็จๆถๅๅๅฏ็ขผๆๅไบซ็ <0>{host}0>ใ่ฅ็ถไฝ ๅ่ญๅขไฝๆไพ่
๏ผ่ซๅๆชขๆฅๅไฝ ๅ
็จๆถๅ็จฑใ"
#: 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}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}0> {1, plural, one {quote} other {quotes}}"
msgstr "<0>{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}0> {1, plural, one {repost} other {reposts}}"
msgstr "<0>{0}0> {1, plural, other {ๅ่ฝ็ผ}}"
@@ -903,9 +856,9 @@ msgstr "<0>{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}0> {likeCount, plural, one {like} other {likes}}"
-msgstr ""
+msgstr "<0>{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}0><1/><2> added you2>"
msgstr "<0>{displayName}0><1/><2> ๅทฒๅฐๆจๅ ๅ
ฅ2>"
#: src/screens/Hashtag.tsx:230
-#: src/screens/Search/SearchResults.tsx:385
+#: src/screens/Search/SearchResults.tsx:412
msgid "<0>Sign in0><1> or 1><2>create an account2><3> 3><4>to search for news, sports, politics, and everything else happening on Bluesky.4>"
msgstr "<0>็ปๅ
ฅ0><1>ๆ1><2>ๅปบ็ซๅธณ่2><3>3><4>ๅณๅฏๅจ Bluesky ไธๆๅฐๆ้ๆฐ่ใ้ซ่ฒใๆฟๆฒป็ญๆฐ้ฎฎไบใ4>"
@@ -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/>0> can verify others.
msgstr "ๅธถๆๆๅฝข่่ฒๅพ่ๅพฝ็ซ ็ๅธณ่<0><1/>0>ๅฏไปฅๅฐๅ
ถไปๅธณ่ๆไบ้ฉ่ญใ้ไบๅฏ้ ็้ฉ่ญ่
็ฑ 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}0>"
msgstr "ไพ่ช <0>{0}0>"
@@ -2504,11 +2468,11 @@ msgstr "ๅปบ็ซๅธณ่ๅณ่กจ็คบๆจๅๆ<0>ๆๅๆขๆฌพ0>ๅ<1>้ฑ็งๆฌๆฟ็ญ
msgid "By creating an account you agree to the <0>Terms of Service0>."
msgstr "ๅปบ็ซๅธณ่ๅณ่กจ็คบๆจๅๆ<0>ๆๅๆขๆฌพ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}0> ็้ฉ่ญ็ขผ๏ผ"
#: 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 icon0> <1/>."
msgstr "ๅๅพๅ
ถๅไบบๆชๆก๏ผ้ปไธไธๆ้็<0>้ด้บๅ็คบ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 more0>"
msgstr "้ฉ่ญๆจ็้ป่ฉฑ่็ขผไธฆๅน้
่ฏ็ตกไบบ๏ผๅณๅฏๅฐๆพไนๅจไฝฟ็จ Bluesky ็ๆๅใๆๅๆๅดๆ ผไฟ่ญทๆจ็่ณ่จ๏ผ่ๆจๆๆงๅพ็บๆไฝใ<0>็ญ่งฃๆดๅค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>้ปไธไธ้่ฃกใ0>"
msgid "Have we got your location wrong? <0>Tap here to update your location with GPS.0>"
msgstr "ไฝ็ฝฎ่ณ่จๅคๆท้ฏ่ชคๅ๏ผ<0>้ปไธไธ้่ฃกไปฅไฝฟ็จ GPS ๆดๆฐๆจ็ไฝ็ฝฎใ0>"
-#: 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 Security0>."
msgstr "ๅฆๆๆจๆณ้ๅถๅ
ถไปไบบๆฅๆถๆจๅธณ่็ๅๆ
้็ฅ๏ผๅฏไปฅๅๅพ <0>่จญๅฎ โ ้ฑ็ง่ๅฎๅ
จ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 search0>."
msgstr "้ฒไธๆญฅ็ญ่งฃ<0>ๅฆไฝไฝฟ็จ้ฒ้ๆๅฐ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.0>"
msgstr "ๅจๆจ็<0>ๅธณ่่จญๅฎ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 up0>"
-msgstr ""
+msgstr "็ฌฌไธๆฌกไฝฟ็จ Bluesky๏ผ<0>่จปๅ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}0>โ with advanced search filters applied."
msgstr "ๅฅ็จ้ฒ้ๆๅฐ็ฏฉ้ธๆขไปถๅพ๏ผๆพไธๅฐ็ฌฆๅใ<0>{query}0>ใ็็ตๆใ"
-#: src/screens/Search/SearchResults.tsx:218
+#: src/screens/Search/SearchResults.tsx:245
msgid "No results found for โ<0>{query}0>โ."
msgstr "ๆพไธๅฐ็ฌฆๅใ<0>{query}0>ใ็็ตๆใ"
-#: 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, to complete your verification and enable access on all platforms."
-msgstr ""
+msgstr "ๅไบซๆจ็ๅนด้ฝกๅฑคๅ
ๆๆญ้ฒ่ๆจ Apple ๅธณ่็ธ้่ฏ็่ณ่จ๏ผไพๅฆ๏ผๆจๅทฒๅนดๆปฟ 18 ๆญฒ๏ผใ<0>ๆจ็็ขบๅๅนด้ฝกๅ็ๆฅ็ตไธๆ่ขซๅไบซ๏ผ0>ไธๆญค่ณ่จ็ตไธๆ้ข้ๆญค่ฃ็ฝฎ๏ผๆ
ๆญคๅ่ฝๅ
่ฝ็บๆญค่ฃ็ฝฎ่งฃ้ค้ๅถใๆ่
๏ผ<1>ๆจๅฏไปฅไฝฟ็จๆๅไฟกไปป็ๅไฝๅคฅไผด KWS1> ไพๅฎๆ้ฉ่ญ๏ผไปฅๅจๆๆๅนณๅฐไธๅ็จๅญๅๆฌ้ใ"
#. 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,0> and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS1>, to complete your verification and enable access on all platforms."
-msgstr ""
+msgstr "ๅไบซๆจ็ๅนด้ฝกๅฑคๅ
ๆๆญ้ฒ่ๆจ Google ๅธณ่็ธ้่ฏ็่ณ่จ๏ผไพๅฆ๏ผๆจๅทฒๅนดๆปฟ 18 ๆญฒ๏ผใ<0>ๆจ็็ขบๅๅนด้ฝกๅ็ๆฅ็ตไธๆ่ขซๅไบซ๏ผ0>ไธๆญค่ณ่จ็ตไธๆ้ข้ๆญค่ฃ็ฝฎ๏ผๆ
ๆญคๅ่ฝๅ
่ฝ็บๆญค่ฃ็ฝฎ่งฃ้ค้ๅถใๆ่
๏ผ<1>ๆจๅฏไปฅไฝฟ็จๆๅไฟกไปป็ๅไฝๅคฅไผด KWS1> ไพๅฎๆ้ฉ่ญ๏ผไปฅๅจๆๆๅนณๅฐไธๅ็จๅญๅๆฌ้ใ"
-#: 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}0>, but was first seen by Bluesky on <1>{1}1>."
msgstr "้ๅ่ฒผๆๅฎฃๅ็็ผๅธๆ้็บ <0>{0}0>๏ผไฝ้ฆๆฌกๅบ็พๅจ Bluesky ็ๆ้ๆฏ <1>{1}1>ใ"
@@ -12649,7 +12662,7 @@ msgstr "้ๅ่ฒผๆๅฎฃๅ็็ผๅธๆ้็บ <0>{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}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}0>
msgstr "้ๆๆฐธไน
ๅช้คๆจ็ Bluesky ๅธณ่ <0>{currentHandle}0> ๅๆๆ็ธ้็่ณๆใ่ซๆณจๆ๏ผ้ไนๆๅฝฑ้ฟ้ๅๅธณ่ๅ
ถไปไปปไฝไฝฟ็จ <1>AT ๅ่ญฐ (AT Protocol)1> ็ๆๅใ"
#. 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 verifiers0>: organizations that can directly issue verification."
msgstr "ไฟกไปปๆบ่ชๆผไบบ้้ไฟใ็คพ็พคๅๅ
ฑไบซ็ฐๅข๏ผๅ ๆญคๆๅไนๅผๅ
ฅไบ<0>ๅฏ้ ็้ฉ่ญ่
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 manually0>."
-msgstr ""
+msgstr "ๆๅๆพไธๅฐ็ฌฆๅ่ฉฒไฝฟ็จ่
ๅ็จฑ็ๅธณ่ใ่ซ็ขบ่ช่ผธๅ
ฅ็ก่ชค๏ผๆ<0>ๆๅ้ธๆๆจ็่จ็ฎกๆๅๆไพ่
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 manually0>."
-msgstr ""
+msgstr "ๆๅ็กๆณ็ขบ่ชๆจ็่จ็ฎกๆๅๆไพ่
ใ่ซๆชขๆฅๆจ็็ถฒ้็ถฒ่ทฏ้ฃ็ท๏ผๆ<0>ๆๅ้ธๆๆจ็ๆๅๆไพ่
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.0>"
msgstr "ๆจๅทฒๅพๅฐ้ฉ่ญใไธๆฆๆจไฟฎๆนๅธณ่ไปฃ็ขผ๏ผๅฐๆๅคฑๅป้ฉ่ญ็ๆ
ใ<0>็ญ่งฃ่ฉณๆ
ใ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 Service0> for more information."
msgstr "ๆจๅฟ
้ ๅนดๆปฟ 13 ๆญฒๆ่ฝไฝฟ็จ Blueskyใ่ซ้ฑ่ฎๆๅ็<0>ๆๅๆขๆฌพ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}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}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}0>. If you donโt recognize this provider, double-check your username."
-msgstr ""
+msgstr "ๆจ็ไฝฟ็จ่
ๅ็จฑ่ๅฏ็ขผๅฐๆๅไบซ็ตฆ <0>{host}0>ใ่ฅๆจไธ่ช่ญๆญคๆไพ่
๏ผ่ซๅๆฌก็ขบ่ชๆจ็ไฝฟ็จ่
ๅ็จฑใ"
#: 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({
)}
>
}) {
- const {_} = useLingui()
+ const {t: l} = useLingui()
const t = useTheme()
const isEmojis = type === 'emojis'
@@ -68,7 +67,6 @@ export function AvatarCreatorItems({
Select a color
)}
-
(
(
{
@@ -298,7 +295,7 @@ export function StepProfile() {
testID="onboardingContinue"
color="primary"
size="large"
- label={_(msg`Continue to next step`)}
+ label={l`Continue to next step`}
onPress={onContinue}>
Continue
@@ -308,7 +305,7 @@ export function StepProfile() {
testID="onboardingAvatarCreator"
color="primary_subtle"
size="large"
- label={_(msg`Open avatar creator`)}
+ label={l`Open avatar creator`}
onPress={onSecondaryPress}>
{avatar.useCreatedAvatar ? (
@@ -321,10 +318,12 @@ export function StepProfile() {
-
-
-
+
+
Done
-
+
-
)
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}) => (
-
- Filter by media
-
+ 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/RepliesDropdown.tsx b/src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx
index 52f352dd08..ca18c77d45 100644
--- a/src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx
+++ b/src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.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 RepliesDropdown({
const {t: l} = useLingui()
const options: {value: RepliesFilter; label: string}[] = [
- {value: 'all', label: l`Posts and replies`},
- {value: 'none', label: l`No replies`},
+ {value: 'all', label: l`No post filter`},
+ {value: 'none', label: l`Only posts`},
{value: 'only', label: l`Only replies`},
]
- const currentLabel = options.find(o => o.value === value)?.label ?? l`All`
+ const currentLabel =
+ options.find(o => o.value === value)?.label ?? l`No post filter`
return (
@@ -46,19 +47,25 @@ export function RepliesDropdown({
)}
-
- Include these results
-
+ 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/hooks.tsx b/src/screens/Search/components/AdvancedSearchDialog/hooks.tsx
index 37c87f84f2..40979345b2 100644
--- a/src/screens/Search/components/AdvancedSearchDialog/hooks.tsx
+++ b/src/screens/Search/components/AdvancedSearchDialog/hooks.tsx
@@ -59,7 +59,7 @@ export function useFilterFieldLabels(): Record<
message: 'These URLs',
comment: 'Advanced search filter',
}),
- label: 'bsky.app atproto.com',
+ label: 'https://bsky.app https://atproto.com',
},
}
}
diff --git a/src/screens/Search/components/AdvancedSearchDialog/index.tsx b/src/screens/Search/components/AdvancedSearchDialog/index.tsx
index b62620ffe3..43876c0d74 100644
--- a/src/screens/Search/components/AdvancedSearchDialog/index.tsx
+++ b/src/screens/Search/components/AdvancedSearchDialog/index.tsx
@@ -390,7 +390,7 @@ function DialogInner({
a.mb_sm,
]}>
- Include
+ Post type
@@ -406,7 +406,7 @@ function DialogInner({
a.mb_sm,
]}>
- From
+ Author
diff --git a/src/screens/Search/components/ModuleHeader.tsx b/src/screens/Search/components/ModuleHeader.tsx
index cf6840dbe0..ce40af98b8 100644
--- a/src/screens/Search/components/ModuleHeader.tsx
+++ b/src/screens/Search/components/ModuleHeader.tsx
@@ -9,6 +9,7 @@ import {atoms as a, native, useTheme, type ViewStyleProp} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
import * as FeedCard from '#/components/FeedCard'
import {sizes as iconSizes} from '#/components/icons/common'
+import {DotGrid3x1_Stroke2_Corner0_Rounded as EllipsisIcon} from '#/components/icons/DotGrid'
import {MagnifyingGlass_Stroke2_Corner0_Rounded as SearchIcon} from '#/components/icons/MagnifyingGlass'
import {Link} from '#/components/Link'
import {Text, type TextProps} from '#/components/Typography'
@@ -151,6 +152,32 @@ export function SearchButton({
)
}
+export function EllipsisButton({
+ label,
+ onPress,
+}: {
+ label: string
+ onPress?: () => void
+}) {
+ return (
+
+
+
+ )
+}
+
export function PinButton({feed}: {feed: AppBskyFeedDefs.GeneratorView}) {
return (
diff --git a/src/screens/Search/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 (
+
+
+ Refresh feature flags
+
+ )
+}
+
+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}) {
) : (
+ onPress={(e: GestureResponderEvent) => void onPressFollow(e)}>
{isFollowedBy ? Follow back : Follow}
@@ -877,11 +910,30 @@ function FollowBackButton({profile}: {profile: AppBskyActorDefs.ProfileView}) {
}
function SayHelloBtn({profile}: {profile: AppBskyActorDefs.ProfileView}) {
- const {_} = useLingui()
+ const {t: l} = useLingui()
const agent = useAgent()
const navigation = useNavigation()
const [isLoading, setIsLoading] = useState(false)
+ const onPress = async () => {
+ try {
+ setIsLoading(true)
+ const res = await agent.api.chat.bsky.convo.getConvoForMembers(
+ {
+ members: [profile.did, agent.session!.did],
+ },
+ {headers: DM_SERVICE_HEADERS},
+ )
+ navigation.navigate('MessagesConversation', {
+ conversation: res.data.convo.id,
+ })
+ } catch (e) {
+ logger.error('Failed to get conversation', {safeMessage: e})
+ } finally {
+ setIsLoading(false)
+ }
+ }
+
if (
profile.associated?.chat?.allowIncoming === 'none' ||
(profile.associated?.chat?.allowIncoming === 'following' &&
@@ -892,30 +944,13 @@ function SayHelloBtn({profile}: {profile: AppBskyActorDefs.ProfileView}) {
return (
{
- try {
- setIsLoading(true)
- const res = await agent.api.chat.bsky.convo.getConvoForMembers(
- {
- members: [profile.did, agent.session!.did],
- },
- {headers: DM_SERVICE_HEADERS},
- )
- navigation.navigate('MessagesConversation', {
- conversation: res.data.convo.id,
- })
- } catch (e) {
- logger.error('Failed to get conversation', {safeMessage: e})
- } finally {
- setIsLoading(false)
- }
- }}>
+ onPress={() => void onPress()}>
Say hello!
@@ -935,7 +970,7 @@ function CondensedAuthorsList({
showDmButton?: boolean
}) {
const t = useTheme()
- const {_} = useLingui()
+ const {t: l} = useLingui()
if (!visible) {
return (
@@ -944,10 +979,8 @@ function CondensedAuthorsList({
style={styles.expandedAuthorsCloseBtn}
onPress={onToggleAuthorsExpanded}
accessibilityRole="button"
- accessibilityLabel={_(msg`Hide user list`)}
- accessibilityHint={_(
- msg`Collapses list of users for a given notification`,
- )}>
+ accessibilityLabel={l`Hide user list`}
+ accessibilityHint={l`Collapses list of users for a given notification`}>
{authors.slice(0, MAX_AUTHORS).map(author => (
-
+
0 && (
{text}
diff --git a/src/view/com/pager/Pager.tsx b/src/view/com/pager/Pager.tsx
index 6d0982ad8d..9aa709f7fe 100644
--- a/src/view/com/pager/Pager.tsx
+++ b/src/view/com/pager/Pager.tsx
@@ -18,12 +18,12 @@ import PagerView, {
type PageScrollStateChangedNativeEventData,
} from 'react-native-pager-view'
import Animated, {
- runOnJS,
type SharedValue,
useEvent,
useHandler,
useSharedValue,
} from 'react-native-reanimated'
+import {scheduleOnRN} from 'react-native-worklets'
import {useFocusEffect} from '@react-navigation/native'
import {useSetDrawerSwipeDisabled} from '#/state/shell'
@@ -125,7 +125,7 @@ export function Pager({
},
onPageScrollStateChanged(e: PageScrollStateChangedNativeEventData) {
'worklet'
- runOnJS(setIsIdle)(e.pageScrollState === 'idle')
+ scheduleOnRN(setIsIdle, e.pageScrollState === 'idle')
if (dragState.get() === 'idle' && e.pageScrollState === 'settling') {
// This is a programmatic scroll on Android.
// Stay "idle" to match iOS and avoid confusing downstream code.
@@ -137,7 +137,7 @@ export function Pager({
onPageSelected(e: PagerViewOnPageSelectedEventData) {
'worklet'
didInit.set(true)
- runOnJS(onPageSelectedJSThread)(e.position)
+ scheduleOnRN(onPageSelectedJSThread, e.position)
},
},
[parentOnPageScrollStateChanged],
diff --git a/src/view/com/pager/PagerWithHeader.tsx b/src/view/com/pager/PagerWithHeader.tsx
index 61a30de4a5..c2c52d72aa 100644
--- a/src/view/com/pager/PagerWithHeader.tsx
+++ b/src/view/com/pager/PagerWithHeader.tsx
@@ -8,13 +8,13 @@ import {
} from 'react-native'
import Animated, {
type AnimatedRef,
- runOnUI,
scrollTo,
type SharedValue,
useAnimatedRef,
useAnimatedStyle,
useSharedValue,
} from 'react-native-reanimated'
+import {scheduleOnUI} from 'react-native-worklets'
import {ScrollProvider} from '#/lib/ScrollContext'
import {
@@ -181,7 +181,7 @@ export function PagerWithHeader({
)
const onTabPressed = useCallback(() => {
- runOnUI(adjustScrollForOtherPages)('dragging')
+ scheduleOnUI(adjustScrollForOtherPages, 'dragging')
}, [adjustScrollForOtherPages])
return (
diff --git a/src/view/com/pager/TabBar.tsx b/src/view/com/pager/TabBar.tsx
index c07f44ac8b..273e6f22de 100644
--- a/src/view/com/pager/TabBar.tsx
+++ b/src/view/com/pager/TabBar.tsx
@@ -7,8 +7,6 @@ import {
} from 'react-native'
import Animated, {
interpolate,
- runOnJS,
- runOnUI,
scrollTo,
type SharedValue,
useAnimatedReaction,
@@ -16,6 +14,7 @@ import Animated, {
useAnimatedStyle,
useSharedValue,
} from 'react-native-reanimated'
+import {scheduleOnRN, scheduleOnUI} from 'react-native-worklets'
import {PressableWithHover} from '#/view/com/util/PressableWithHover'
import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture'
@@ -126,7 +125,7 @@ export function TabBar({
const progress = dragProgress.get()
const offset = progressToOffset(progress)
// It's unclear why we need to go back to JS here. It seems iOS-specific.
- runOnJS(scrollToOffsetJS)(offset)
+ scheduleOnRN(scrollToOffsetJS, offset)
}
}
},
@@ -303,7 +302,7 @@ export function TabBar({
const onPressItem = useCallback(
(index: number) => {
- runOnUI(onPressUIThread)(index)
+ scheduleOnUI(onPressUIThread, index)
onSelect?.(index)
if (index === selectedPage) {
onPressSelected?.(index)
@@ -409,14 +408,14 @@ function TabBarItem({
const handleLayout = useCallback(
(e: LayoutChangeEvent) => {
- runOnUI(onItemLayout)(index, e.nativeEvent.layout)
+ scheduleOnUI(onItemLayout, index, e.nativeEvent.layout)
},
[index, onItemLayout],
)
const handleTextLayout = useCallback(
(e: LayoutChangeEvent) => {
- runOnUI(onTextLayout)(index, e.nativeEvent.layout)
+ scheduleOnUI(onTextLayout, index, e.nativeEvent.layout)
},
[index, onTextLayout],
)
diff --git a/src/view/com/posts/PostFeed.tsx b/src/view/com/posts/PostFeed.tsx
index bc40880bf4..eea2453739 100644
--- a/src/view/com/posts/PostFeed.tsx
+++ b/src/view/com/posts/PostFeed.tsx
@@ -1,4 +1,12 @@
-import {memo, useCallback, useEffect, useMemo, useRef, useState} from 'react'
+import {
+ memo,
+ useCallback,
+ useEffect,
+ useImperativeHandle,
+ useMemo,
+ useRef,
+ useState,
+} from 'react'
import {
ActivityIndicator,
AppState,
@@ -151,6 +159,7 @@ type FeedRow =
| {
type: 'interstitialFeedTrendingTopics'
key: string
+ feedSliceIndex: number
}
| {
type: 'interstitialTrendingVideos'
@@ -195,6 +204,10 @@ export function getItemsForFeedback(feedRow: FeedRow): {
}
}
+export type PostFeedRef = {
+ refreshFeed: () => Promise
+}
+
// DISABLED need to check if this is causing random feed refreshes -prf
// const REFRESH_AFTER = STALE.HOURS.ONE
const CHECK_LATEST_AFTER = STALE.SECONDS.THIRTY
@@ -222,6 +235,7 @@ let PostFeed = ({
savedFeedConfig,
initialNumToRender: initialNumToRenderOverride,
isVideoFeed = false,
+ ref,
}: {
feed: FeedDescriptor
description?: RichTextType
@@ -246,6 +260,7 @@ let PostFeed = ({
initialNumToRender?: number
isVideoFeed?: boolean
lastFetchDate?: () => number
+ ref?: React.Ref
}): React.ReactNode => {
const ax = useAnalytics()
const t = useTheme()
@@ -262,6 +277,15 @@ let PostFeed = ({
const {rightNavVisible} = useLayoutBreakpoints()
const areVideoFeedsEnabled = IS_NATIVE
+ const trendingIndices = ax.features.getValue(
+ ax.features.TrendingDiscoverValues,
+ {
+ topics: 5,
+ accounts: 15,
+ videos: 30,
+ },
+ )
+
const [hasPressedShowLessUris, setHasPressedShowLessUris] = useState(
() => new Set(),
)
@@ -556,19 +580,20 @@ let PostFeed = ({
key: 'composerPrompt-' + sliceIndex,
})
}
- } else if (sliceIndex === 1) {
+ } else if (sliceIndex === trendingIndices.topics) {
arr.push({
type: 'interstitialFeedTrendingTopics',
key: 'interstitialFeedTrendingTopics-' + sliceIndex,
+ feedSliceIndex: sliceIndex,
})
- } else if (sliceIndex === 15) {
+ } else if (sliceIndex === trendingIndices.videos) {
if (areVideoFeedsEnabled && !trendingVideoDisabled) {
arr.push({
type: 'interstitialTrendingVideos',
key: 'interstitial-' + sliceIndex + '-' + lastFetchedAt,
})
}
- } else if (sliceIndex === 30) {
+ } else if (sliceIndex === trendingIndices.accounts) {
arr.push({
type: 'interstitialFollows',
key: 'interstitial-' + sliceIndex + '-' + lastFetchedAt,
@@ -721,12 +746,14 @@ let PostFeed = ({
ageAssuranceBannerState,
isCurrentFeedAtStartupSelected,
blockedOrMutedAuthors,
+ trendingIndices,
])
// events
// =
+ //
- const onRefresh = useCallback(async () => {
+ const refreshFeed = async () => {
if (!enabled) return
ax.metric('feed:refresh', {
@@ -734,24 +761,23 @@ let PostFeed = ({
feedUrl: feed,
reason: 'pull-to-refresh',
})
- setIsPTRing(true)
try {
await truncateAndInvalidate(queryClient, RQKEY(feed, feedParams))
onHasNew?.(false)
} catch (err) {
logger.error('Failed to refresh posts feed', {message: err})
}
+ }
+
+ const onRefresh = async () => {
+ setIsPTRing(true)
+ await refreshFeed()
setIsPTRing(false)
- }, [
- ax,
- queryClient,
- setIsPTRing,
- onHasNew,
- feed,
- feedParams,
- feedType,
- enabled,
- ])
+ }
+
+ useImperativeHandle(ref, () => ({
+ refreshFeed,
+ }))
const onEndReached = useCallback(async () => {
if (isFetching || !hasNextPage || isError) return
@@ -834,7 +860,9 @@ let PostFeed = ({
} else if (row.type === 'interstitialTrending') {
return
} else if (row.type === 'interstitialFeedTrendingTopics') {
- return
+ return (
+
+ )
} else if (row.type === 'liveEventFeedsAndTrendingBanner') {
return
} else if (row.type === 'composerPrompt') {
diff --git a/src/view/com/profile/ProfileFollowers.tsx b/src/view/com/profile/ProfileFollowers.tsx
index 07092caed6..b5040aae9d 100644
--- a/src/view/com/profile/ProfileFollowers.tsx
+++ b/src/view/com/profile/ProfileFollowers.tsx
@@ -1,7 +1,6 @@
import {useCallback, useEffect, useMemo, useRef, useState} from 'react'
import {type AppBskyActorDefs as ActorDefs} from '@atproto/api'
-import {msg} from '@lingui/core/macro'
-import {useLingui} from '@lingui/react'
+import {useLingui} from '@lingui/react/macro'
import {useNavigation} from '@react-navigation/native'
import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender'
@@ -48,18 +47,22 @@ function keyExtractor(item: ActorDefs.ProfileView) {
}
export function ProfileFollowers({name}: {name: string}) {
- const {_} = useLingui()
+ const {t: l} = useLingui()
const ax = useAnalytics()
const navigation = useNavigation()
const initialNumToRender = useInitialNumToRender()
const {currentAccount} = useSession()
+ const isSortEnabled = ax.features.enabled(ax.features.FollowSortEnable)
+
const [isPTRing, setIsPTRing] = useState(false)
const {
data: resolvedDid,
isLoading: isDidLoading,
error: resolveError,
} = useResolveDidQuery(name)
+ const isMe = resolvedDid === currentAccount?.did
+ const sort = isMe ? 'latest' : 'top'
const {
data,
isLoading: isFollowersLoading,
@@ -68,10 +71,11 @@ export function ProfileFollowers({name}: {name: string}) {
fetchNextPage,
error,
refetch,
- } = useProfileFollowersQuery(resolvedDid)
+ } = useProfileFollowersQuery(resolvedDid, {
+ sort,
+ })
const isError = !!resolveError || !!error
- const isMe = resolvedDid === currentAccount?.did
const followers = useMemo(() => {
if (data?.pages) {
@@ -101,10 +105,18 @@ export function ProfileFollowers({name}: {name: string}) {
contextProfileDid: resolvedDid,
itemCount: followers.length,
page: currentPageCount,
+ sort: isSortEnabled ? sort : undefined,
})
}
paginationTrackingRef.current.page = currentPageCount
- }, [ax, data?.pages?.length, resolvedDid, followers.length])
+ }, [
+ ax,
+ data?.pages?.length,
+ resolvedDid,
+ followers.length,
+ sort,
+ isSortEnabled,
+ ])
const onRefresh = useCallback(async () => {
setIsPTRing(true)
@@ -137,9 +149,10 @@ export function ProfileFollowers({name}: {name: string}) {
ax.metric('profile:followers:view', {
contextProfileDid: resolvedDid,
isOwnProfile: isMe,
+ sort: isSortEnabled ? sort : undefined,
})
}
- }, [ax, resolvedDid, isMe])
+ }, [ax, resolvedDid, isMe, sort, isSortEnabled])
// track seen items
const seenItemsRef = useRef>(new Set())
@@ -160,9 +173,10 @@ export function ProfileFollowers({name}: {name: string}) {
profileDid: item.did,
position,
...(resolvedDid !== undefined && {contextProfileDid: resolvedDid}),
+ sort: isSortEnabled ? sort : undefined,
})
},
- [ax, followers, resolvedDid],
+ [ax, followers, resolvedDid, sort, isSortEnabled],
)
const [followersPromoDismissed, setFollowersPromoDismissed] =
@@ -199,8 +213,8 @@ export function ProfileFollowers({name}: {name: string}) {
emptyType="results"
emptyMessage={
isMe
- ? _(msg`No followers yet`)
- : _(msg`This user doesn't have any followers.`)
+ ? l`No followers yet`
+ : l`This user doesn't have any followers.`
}
errorMessage={cleanError(resolveError || error)}
onRetry={isError ? refetch : undefined}
@@ -208,8 +222,8 @@ export function ProfileFollowers({name}: {name: string}) {
useEmptyState={true}
emptyStateIcon={PeopleRemoveIcon}
emptyStateButton={{
- label: _(msg`Go back`),
- text: _(msg`Go back`),
+ label: l`Go back`,
+ text: l`Go back`,
color: 'secondary',
size: 'small',
onPress: () => navigation.goBack(),
@@ -221,8 +235,8 @@ export function ProfileFollowers({name}: {name: string}) {
renderItem={renderItemWithContext}
keyExtractor={keyExtractor}
refreshing={isPTRing}
- onRefresh={onRefresh}
- onEndReached={onEndReached}
+ onRefresh={() => void onRefresh()}
+ onEndReached={() => void onEndReached()}
onEndReachedThreshold={4}
onItemSeen={onItemSeen}
ListFooterComponent={
diff --git a/src/view/com/profile/ProfileFollows.tsx b/src/view/com/profile/ProfileFollows.tsx
index 9371038aa6..b72161187c 100644
--- a/src/view/com/profile/ProfileFollows.tsx
+++ b/src/view/com/profile/ProfileFollows.tsx
@@ -1,7 +1,6 @@
import {useCallback, useEffect, useMemo, useRef, useState} from 'react'
import {type AppBskyActorDefs as ActorDefs} from '@atproto/api'
-import {msg} from '@lingui/core/macro'
-import {useLingui} from '@lingui/react'
+import {useLingui} from '@lingui/react/macro'
import {useNavigation} from '@react-navigation/native'
import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender'
@@ -44,12 +43,14 @@ function keyExtractor(item: ActorDefs.ProfileView) {
}
export function ProfileFollows({name}: {name: string}) {
- const {_} = useLingui()
+ const {t: l} = useLingui()
const ax = useAnalytics()
const initialNumToRender = useInitialNumToRender()
const {currentAccount} = useSession()
const navigation = useNavigation()
+ const isSortEnabled = ax.features.enabled(ax.features.FollowSortEnable)
+
const onPressFindAccounts = useCallback(() => {
if (IS_WEB) {
navigation.navigate('Search', {})
@@ -65,6 +66,8 @@ export function ProfileFollows({name}: {name: string}) {
isLoading: isDidLoading,
error: resolveError,
} = useResolveDidQuery(name)
+ const isMe = resolvedDid === currentAccount?.did
+ const sort = isMe ? 'latest' : 'top'
const {
data,
isLoading: isFollowsLoading,
@@ -73,10 +76,11 @@ export function ProfileFollows({name}: {name: string}) {
fetchNextPage,
error,
refetch,
- } = useProfileFollowsQuery(resolvedDid)
+ } = useProfileFollowsQuery(resolvedDid, {
+ sort,
+ })
const isError = !!resolveError || !!error
- const isMe = resolvedDid === currentAccount?.did
const follows = useMemo(() => {
if (data?.pages) {
@@ -106,10 +110,18 @@ export function ProfileFollows({name}: {name: string}) {
contextProfileDid: resolvedDid,
itemCount: follows.length,
page: currentPageCount,
+ sort: isSortEnabled ? sort : undefined,
})
}
paginationTrackingRef.current.page = currentPageCount
- }, [ax, data?.pages?.length, resolvedDid, follows.length])
+ }, [
+ ax,
+ data?.pages?.length,
+ resolvedDid,
+ follows.length,
+ sort,
+ isSortEnabled,
+ ])
const onRefresh = useCallback(async () => {
setIsPTRing(true)
@@ -142,9 +154,10 @@ export function ProfileFollows({name}: {name: string}) {
ax.metric('profile:following:view', {
contextProfileDid: resolvedDid,
isOwnProfile: isMe,
+ sort: isSortEnabled ? sort : undefined,
})
}
- }, [ax, resolvedDid, isMe])
+ }, [ax, resolvedDid, isMe, sort, isSortEnabled])
// track seen items
const seenItemsRef = useRef>(new Set())
@@ -165,9 +178,10 @@ export function ProfileFollows({name}: {name: string}) {
profileDid: item.did,
position,
...(resolvedDid !== undefined && {contextProfileDid: resolvedDid}),
+ sort: isSortEnabled ? sort : undefined,
})
},
- [ax, follows, resolvedDid],
+ [ax, follows, resolvedDid, sort, isSortEnabled],
)
if (follows.length < 1) {
@@ -178,8 +192,8 @@ export function ProfileFollows({name}: {name: string}) {
emptyType="results"
emptyMessage={
isMe
- ? _(msg`You are not following anyone yet`)
- : _(msg`This user isn't following anyone.`)
+ ? l`You are not following anyone yet`
+ : l`This user isn't following anyone.`
}
errorMessage={cleanError(resolveError || error)}
onRetry={isError ? refetch : undefined}
@@ -187,8 +201,8 @@ export function ProfileFollows({name}: {name: string}) {
useEmptyState={true}
emptyStateIcon={PeopleRemoveIcon}
emptyStateButton={{
- label: _(msg`See suggested accounts`),
- text: _(msg`See suggested accounts`),
+ label: l`See suggested accounts`,
+ text: l`See suggested accounts`,
onPress: onPressFindAccounts,
size: 'tiny',
color: 'primary',
@@ -203,8 +217,8 @@ export function ProfileFollows({name}: {name: string}) {
renderItem={renderItemWithContext}
keyExtractor={keyExtractor}
refreshing={isPTRing}
- onRefresh={onRefresh}
- onEndReached={onEndReached}
+ onRefresh={() => void onRefresh()}
+ onEndReached={() => void onEndReached()}
onEndReachedThreshold={4}
onItemSeen={onItemSeen}
ListHeaderComponent={}
diff --git a/src/view/com/util/List.tsx b/src/view/com/util/List.tsx
index f8a537a657..0489f83fb9 100644
--- a/src/view/com/util/List.tsx
+++ b/src/view/com/util/List.tsx
@@ -2,10 +2,10 @@ import {forwardRef, memo, useDeferredValue, useMemo} from 'react'
import {RefreshControl, type ViewToken} from 'react-native'
import {
type FlatListPropsWithLayout,
- runOnJS,
useAnimatedScrollHandler,
useSharedValue,
} from 'react-native-reanimated'
+import {scheduleOnRN} from 'react-native-worklets'
import {updateActiveVideoViewAsync} from '@bsky.app/video'
import {useDedupe} from '#/lib/hooks/useDedupe'
@@ -85,7 +85,7 @@ let List = forwardRef(
onBeginDragFromContext?.(e, ctx)
},
onEndDrag(e, ctx) {
- runOnJS(updateActiveVideoViewAsync)()
+ scheduleOnRN(updateActiveVideoViewAsync)
onEndDragFromContext?.(e, ctx)
},
onScroll(e, ctx) {
@@ -95,18 +95,18 @@ let List = forwardRef(
if (isScrolledDown.get() !== didScrollDown) {
isScrolledDown.set(didScrollDown)
if (onScrolledDownChange != null) {
- runOnJS(handleScrolledDownChange)(didScrollDown)
+ scheduleOnRN(handleScrolledDownChange, didScrollDown)
}
}
if (IS_IOS) {
- runOnJS(dedupe)(updateActiveVideoViewAsync)
+ scheduleOnRN(dedupe, updateActiveVideoViewAsync)
}
},
// Note: adding onMomentumBegin here makes simulator scroll
// lag on Android. So either don't add it, or figure out why.
onMomentumEnd(e, ctx) {
- runOnJS(updateActiveVideoViewAsync)()
+ scheduleOnRN(updateActiveVideoViewAsync)
onMomentumEndFromContext?.(e, ctx)
},
})
diff --git a/src/view/com/util/MainScrollProvider.tsx b/src/view/com/util/MainScrollProvider.tsx
index 1a0580ea4e..ccab7cb992 100644
--- a/src/view/com/util/MainScrollProvider.tsx
+++ b/src/view/com/util/MainScrollProvider.tsx
@@ -3,6 +3,7 @@ import {type NativeScrollEvent} from 'react-native'
import {
clamp,
interpolate,
+ Reanimated3DefaultSpringConfig,
type SharedValue,
useAnimatedStyle,
useSharedValue,
@@ -105,6 +106,7 @@ export function MainScrollProvider({children}: {children: React.ReactNode}) {
'worklet'
headerMode.set(() =>
withSpring(v ? 1 : 0, {
+ ...Reanimated3DefaultSpringConfig,
overshootClamping: true,
}),
)
diff --git a/src/view/com/util/UserAvatar.tsx b/src/view/com/util/UserAvatar.tsx
index f139542857..98819bf8d6 100644
--- a/src/view/com/util/UserAvatar.tsx
+++ b/src/view/com/util/UserAvatar.tsx
@@ -391,14 +391,14 @@ let EditableUserAvatar = ({
return
}
- onSelectNewAvatar(
- await compressIfNeeded(
- await openCamera({
- aspect: [1, 1],
- }),
- IMAGE_SIZE_CONFIG_2K_1MB,
- ),
- )
+ const image = await openCamera({
+ aspect: [1, 1],
+ })
+ if (!image) {
+ return
+ }
+
+ onSelectNewAvatar(await compressIfNeeded(image, IMAGE_SIZE_CONFIG_2K_1MB))
}, [onSelectNewAvatar, requestCameraAccessIfNeeded])
const onOpenLibrary = useCallback(async () => {
diff --git a/src/view/com/util/UserBanner.tsx b/src/view/com/util/UserBanner.tsx
index ff4b6631bd..964cc2ba57 100644
--- a/src/view/com/util/UserBanner.tsx
+++ b/src/view/com/util/UserBanner.tsx
@@ -58,14 +58,14 @@ export function UserBanner({
if (!(await requestCameraAccessIfNeeded())) {
return
}
- onSelectNewBanner?.(
- await compressIfNeeded(
- await openCamera({
- aspect: [3, 1],
- }),
- IMAGE_SIZE_CONFIG_2K_1MB,
- ),
- )
+ const image = await openCamera({
+ aspect: [3, 1],
+ })
+ if (!image) {
+ return
+ }
+
+ onSelectNewBanner?.(await compressIfNeeded(image, IMAGE_SIZE_CONFIG_2K_1MB))
}, [onSelectNewBanner, requestCameraAccessIfNeeded])
const onOpenLibrary = useCallback(async () => {
diff --git a/src/view/com/util/text/Text.tsx b/src/view/com/util/text/Text.tsx
index 88682d9172..b703efa405 100644
--- a/src/view/com/util/text/Text.tsx
+++ b/src/view/com/util/text/Text.tsx
@@ -1,6 +1,6 @@
import {useMemo} from 'react'
import {StyleSheet, type TextProps} from 'react-native'
-import {UITextView} from 'react-native-uitextview'
+import {UITextView} from '@bsky.app/react-native-uitextview'
import {lh, s} from '#/lib/styles'
import {type TypographyVariant, useTheme} from '#/lib/ThemeContext'
diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx
index eeb77e64b0..d3495bbd04 100644
--- a/src/view/screens/Home.tsx
+++ b/src/view/screens/Home.tsx
@@ -1,6 +1,9 @@
import {useCallback, useEffect, useLayoutEffect, useMemo, useRef} from 'react'
import {ActivityIndicator, StyleSheet} from 'react-native'
-import {withSpring} from 'react-native-reanimated'
+import {
+ Reanimated3DefaultSpringConfig,
+ withSpring,
+} from 'react-native-reanimated'
import {useFocusEffect} from '@react-navigation/native'
import {PROD_DEFAULT_FEED} from '#/lib/constants'
@@ -147,7 +150,12 @@ function HomeScreenReady({
const headerMode = useHomeHeaderMode()
const showHeader = useCallback(() => {
'worklet'
- headerMode.set(() => withSpring(0, {overshootClamping: true}))
+ headerMode.set(() =>
+ withSpring(0, {
+ ...Reanimated3DefaultSpringConfig,
+ overshootClamping: true,
+ }),
+ )
}, [headerMode])
useFocusEffect(
diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx
index 35718b9589..ead74bae94 100644
--- a/src/view/screens/Profile.tsx
+++ b/src/view/screens/Profile.tsx
@@ -1,6 +1,7 @@
import {useCallback, useEffect, useMemo, useRef, useState} from 'react'
import {StyleSheet} from 'react-native'
import {SafeAreaView} from 'react-native-safe-area-context'
+import {ScrollForwarderView} from 'react-native-scroll-forwarder'
import {
type AppBskyActorDefs,
moderateProfile,
@@ -36,6 +37,7 @@ import {useAgent, useSession} from '#/state/session'
import {ProfileFeedgens} from '#/view/com/feeds/ProfileFeedgens'
import {ProfileLists} from '#/view/com/lists/ProfileLists'
import {PagerWithHeader} from '#/view/com/pager/PagerWithHeader'
+import {type PostFeedRef} from '#/view/com/posts/PostFeed'
import {ErrorScreen} from '#/view/com/util/error/ErrorScreen'
import {FAB} from '#/view/com/util/fab/FAB'
import {type ListRef} from '#/view/com/util/List'
@@ -53,7 +55,6 @@ import * as Layout from '#/components/Layout'
import {ScreenHider} from '#/components/moderation/ScreenHider'
import {ProfileStarterPacks} from '#/components/StarterPack/ProfileStarterPacks'
import {navigate} from '#/Navigation'
-import {ExpoScrollForwarderView} from '../../../modules/expo-scroll-forwarder'
interface SectionRef {
scrollToTop: () => void
@@ -187,6 +188,7 @@ function ProfileScreenLoaded({
enabled: !!profile.associated?.labeler,
})
const [currentPage, setCurrentPage] = useState(0)
+ const [isRefreshing, setIsRefreshing] = useState(false)
const {_} = useLingui()
const [scrollViewTag, setScrollViewTag] = useState(null)
@@ -353,6 +355,14 @@ function ProfileScreenLoaded({
],
})
+ const postFeedRef = useRef(null)
+
+ const onRefresh = async () => {
+ setIsRefreshing(true)
+ await postFeedRef.current?.refreshFeed()
+ setIsRefreshing(false)
+ }
+
// rendering
// =
@@ -362,7 +372,10 @@ function ProfileScreenLoaded({
setMinimumHeight: (height: number) => void
}) => {
return (
-
+
-
+
)
}
@@ -440,6 +453,7 @@ function ProfileScreenLoaded({
}
: undefined
}
+ postFeedRef={postFeedRef}
/>
)
: null}
diff --git a/src/view/shell/BlockDrawerGesture.tsx b/src/view/shell/BlockDrawerGesture.tsx
index 93ef18cfae..b29de0c155 100644
--- a/src/view/shell/BlockDrawerGesture.tsx
+++ b/src/view/shell/BlockDrawerGesture.tsx
@@ -2,6 +2,11 @@ import {useContext} from 'react'
import {DrawerGestureContext} from 'react-native-drawer-layout'
import {Gesture, GestureDetector} from 'react-native-gesture-handler'
+/**
+ * BlockDrawerGesture must wrap the ScrollView directly - Gesture.Native()
+ * only works when attached to the natively scrollable view. On the new
+ * arch (Android), attaching it to a wrapper view breaks scrolling.
+ */
export function BlockDrawerGesture({children}: {children: React.ReactNode}) {
const drawerGesture = useContext(DrawerGestureContext) ?? Gesture.Native() // noop for web
let scrollGesture = Gesture.Native()
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx
index 358759f379..f82b699363 100644
--- a/src/view/shell/Drawer.tsx
+++ b/src/view/shell/Drawer.tsx
@@ -62,6 +62,7 @@ import {
UserCircle_Stroke2_Corner0_Rounded as UserCircle,
} from '#/components/icons/UserCircle'
import {InlineLinkText} from '#/components/Link'
+import {OTAChannelNotice} from '#/components/OTAChannelNotice'
import {ProfileBadges} from '#/components/ProfileBadges'
import {Text} from '#/components/Typography'
import {useAnalytics} from '#/analytics'
@@ -343,6 +344,8 @@ let DrawerContent = ({}: React.PropsWithoutRef<{}>): React.ReactNode => {
)}
+
+
diff --git a/src/view/shell/desktop/SidebarTrendingTopics.tsx b/src/view/shell/desktop/SidebarTrendingTopics.tsx
index aa7bf4026c..7d0c60fbc1 100644
--- a/src/view/shell/desktop/SidebarTrendingTopics.tsx
+++ b/src/view/shell/desktop/SidebarTrendingTopics.tsx
@@ -5,19 +5,21 @@ import {
useTrendingSettings,
useTrendingSettingsApi,
} from '#/state/preferences/trending'
-import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery'
+import {
+ DEFAULT_LIMIT,
+ useGetTrendsQuery,
+} from '#/state/queries/trending/useGetTrendsQuery'
import {useTrendingConfig} from '#/state/service-config'
import {atoms as a, useTheme} from '#/alf'
import {Button, ButtonIcon} from '#/components/Button'
-import {DotGrid3x1_Stroke2_Corner0_Rounded as Ellipsis} from '#/components/icons/DotGrid'
+import {DotGrid3x1_Stroke2_Corner0_Rounded as EllipsisIcon} from '#/components/icons/DotGrid'
import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending'
+import {Link} from '#/components/Link'
import * as Prompt from '#/components/Prompt'
import {TrendingTopicLink} from '#/components/TrendingTopics'
import {Text} from '#/components/Typography'
import {useAnalytics} from '#/analytics'
-const TRENDING_LIMIT = 5
-
export function SidebarTrendingTopics() {
const {enabled} = useTrendingConfig()
const {trendingDisabled} = useTrendingSettings()
@@ -28,6 +30,12 @@ function Inner() {
const t = useTheme()
const {t: l} = useLingui()
const ax = useAnalytics()
+
+ const exploreTopicCount = ax.features.getValue(
+ ax.features.TrendingExploreTopicsCountValue,
+ DEFAULT_LIMIT,
+ )
+
const trendingPrompt = Prompt.usePromptControl()
const {setTrendingDisabled} = useTrendingSettingsApi()
const {
@@ -35,6 +43,7 @@ function Inner() {
error,
isLoading,
} = useGetTrendsQuery({
+ limit: DEFAULT_LIMIT,
refetchOnWindowFocus: true,
})
const noTopics = !isLoading && !error && !trending?.trends?.length
@@ -50,9 +59,29 @@ function Inner() {
style={[a.p_lg, a.rounded_md, a.border, t.atoms.border_contrast_low]}>
-
+
Trending
+ {exploreTopicCount > DEFAULT_LIMIT ? (
+
+ {({hovered, pressed}) => (
+
+ See more
+
+ )}
+
+ ) : null}
trendingPrompt.open()}
- style={[a.bg_transparent, {marginTop: -6, marginRight: -6}]}>
-
+ style={[a.bg_transparent]}>
+
{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)